Kim Majali wrote on 26/05/2022
To extend the admin base file create admin folder in the template folder and create base_site.html
templates/admin/base_site.html
Kim Majali wrote on 26/05/2022
The django-import-export library supports multiple formats, including xls, csv, json, yaml, and all other formats supported by tablib. It also have a Django admin integration, which is really convenient to use.
Read moreKim Majali wrote on 26/05/2022
from django.contrib import admin
from .models import Listing
admin.site.register(Listing)
Read moreKim Majali wrote on 26/05/2022
Type python manage.py createsuperuser
Kim Majali wrote on 26/05/2022
Add these at bottom of url.py of your main application, make sure that admin is imported
admin.site.site_header= "Lewhdk Admin"
admin.site.site_title= "Lewhdk Admin Area"
admin.site.index_title= "Welcome to Lewhdk admin area"
Read moreTopics: Admin