Delete get_state_default of NomineePosition class because the migrate command fails. See #908 #909 - Legacy-Id: 5124
11 lines
237 B
Python
11 lines
237 B
Python
from django.contrib import admin
|
|
|
|
from ietf.dbtemplate.models import DBTemplate
|
|
|
|
|
|
class DBTemplateAdmin(admin.ModelAdmin):
|
|
list_display = ('title', 'path',)
|
|
ordering = ('path', )
|
|
|
|
admin.site.register(DBTemplate, DBTemplateAdmin)
|