Сначала добавьте следующую строку в файл admin.py:
add_form_template='add_form.html'
Таким образом, ваш файл admin.py станет:
from django.contrib import admin
from django.contrib.auth.admin import UserAdmin
from .models import CustomUser
class CustomUserAdmin(UserAdmin):
add_form_template='add_form.html'
list_display = ('first_name','last_name','email','is_staff', 'is_active',)
list_filter = ('first_name','email', 'is_staff', 'is_active',)
search_fields = ('email','first_name','last_name','a1','a2','city','state','pincode')
ordering = ('first_name',)
add_fieldsets = (
('Personal Information', {
# To create a section with name 'Personal Information' with mentioned fields
'description': "",
'classes': ('wide',), # To make char fields and text fields of a specific size
'fields': (('first_name','last_name'),'email','a1','a2','city','state','pincode','check',
'password1', 'password2',)}
),
('Permissions',{
'description': "",
'classes': ('wide', 'collapse'),
'fields':( 'is_staff', 'is_active','date_joined')}),
)
После этого go в папку шаблонов и создайте html файл с именем: add_form.html
и добавьте в него следующий код:
{% extends "admin/change_form.html" %}
{% load i18n admin_urls static admin_modify %}
{% block content_title %}
<h1>Type new header here</h1>
{% endblock %}
Вот и все.