10 lines
231 B
Python
10 lines
231 B
Python
|
|
from django.contrib import admin
|
||
|
|
|
||
|
|
from .models import CommunityTrackProposal
|
||
|
|
|
||
|
|
|
||
|
|
@admin.register(CommunityTrackProposal)
|
||
|
|
class CommunityTrackProposalAdmin(admin.ModelAdmin):
|
||
|
|
list_display = ['track_name', 'contact_name']
|
||
|
|
pass
|