mirror of
https://github.com/pinry/pinry.git
synced 2025-11-13 16:45:41 +01:00
11 lines
140 B
Python
11 lines
140 B
Python
|
|
from django.contrib import admin
|
||
|
|
|
||
|
|
from .models import Pin
|
||
|
|
|
||
|
|
|
||
|
|
class PinAdmin(admin.ModelAdmin):
|
||
|
|
pass
|
||
|
|
|
||
|
|
admin.site.register(Pin, PinAdmin)
|
||
|
|
|