Ben Sturmfels
531a97a3c9
The directory nesting is unnecessary here and confusing to navigate. I've moved all apps to the project subdirectory, currently called "www", but soon to be renamed "conservancy". I've also moved manage.py to the top-level directory.
17 lines
419 B
Python
17 lines
419 B
Python
from django.contrib import admin
|
|
|
|
from . import models
|
|
|
|
|
|
class FundraisingGoalAdmin(admin.ModelAdmin):
|
|
list_display = ('fundraiser_code_name', 'fundraiser_goal_amount')
|
|
|
|
|
|
class GoalProviderAdmin(admin.ModelAdmin):
|
|
fields = [
|
|
'fundraising_goal',
|
|
'provider_name',
|
|
]
|
|
|
|
admin.site.register(models.FundraisingGoal, FundraisingGoalAdmin)
|
|
admin.site.register(models.GoalProvider, GoalProviderAdmin)
|