mirror of
https://github.com/pinry/pinry.git
synced 2026-02-05 14:09:28 +01:00
11 lines
189 B
Python
11 lines
189 B
Python
from django.contrib import admin
|
|
|
|
from pinry.pins.models import Pin
|
|
|
|
|
|
class PinAdmin(admin.ModelAdmin):
|
|
list_display = ['published', 'description']
|
|
|
|
|
|
admin.site.register(Pin, PinAdmin)
|