You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
418 B
10 lines
418 B
# -*- coding: utf-8 -*-
|
|
from django.contrib import admin
|
|
|
|
|
|
class DefaultAdmin(admin.ModelAdmin):
|
|
change_list_template = 'admin/_change_list.html'
|
|
change_form_template = 'admin/_change_form.html'
|
|
delete_selected_confirmation_template = 'admin/_delete_selected_confirmation.html'
|
|
delete_confirmation_template = 'admin/_delete_confirmation.html'
|
|
object_history_template = 'admin/_object_history.html'
|
|
|