mirror of
https://github.com/jazzband/django-categories.git
synced 2026-03-16 22:30:24 +00:00
9 lines
No EOL
190 B
Python
9 lines
No EOL
190 B
Python
from models import SimpleText
|
|
from django.contrib import admin
|
|
|
|
|
|
class SimpleTextAdmin(admin.ModelAdmin):
|
|
filter_horizontal = ['cats',]
|
|
|
|
|
|
admin.site.register(SimpleText, SimpleTextAdmin) |