mirror of
https://github.com/nikdoof/vapemap.git
synced 2025-12-17 11:49:25 +00:00
New app called "moderation" which handles the reporting, and in the future, management of incorrect records in the database.
6 lines
189 B
Python
6 lines
189 B
Python
from django.contrib import admin
|
|
from moderation.models import FlagType, FlaggedObject
|
|
|
|
admin.site.register(FlagType, admin.ModelAdmin)
|
|
admin.site.register(FlaggedObject, admin.ModelAdmin)
|