Install guide · framework · ~2 min
Drop into templates/base.html.
Django apps extend a common base.html template. Adding the Admaxxer snippet once in the <head> block makes the pixel fire across every view.
Edit templates/base.html (or whichever template your other templates extend).
Paste the snippet inside the <head> block so every page rendering base.html inherits it.
templates/base.html html{% load static %}
<!DOCTYPE html>
<html>
<head>
<title>{% block title %}{% endblock %}</title>
<script defer
data-website-id="YOUR_WEBSITE_ID"
data-domain="yourdomain.com"
src="https://admaxxer.com/js/script.js"></script>
</head>
<body>{% block content %}{% endblock %}</body>
</html>
Load any public page on your site in a fresh browser tab. Within a few seconds, the Admaxxer dashboard realtime view should show the event. If nothing lands after 2 minutes, re-check the snippet is actually in the rendered HTML <head> (View Source, not just DevTools).
admaxxer.com to CSP_SCRIPT_SRC and CSP_CONNECT_SRC in your django-csp settings.