# -*- 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'