* Create a new models NomComGroup with public_key field. Default type is nomcom * News urls and views to separate members and chair forms * Add rolodex url when person not found. * Views access is only for secretariat and chair roles See #904 - Legacy-Id: 5069
12 lines
232 B
Python
12 lines
232 B
Python
from django.contrib import admin
|
|
|
|
from ietf.group.admin import GroupAdmin
|
|
from ietf.nomcom.models import NomComGroup
|
|
|
|
|
|
class NomComGroupAdmin(GroupAdmin):
|
|
exclude = ('type',)
|
|
|
|
|
|
admin.site.register(NomComGroup, NomComGroupAdmin)
|