10 lines
221 B
Python
10 lines
221 B
Python
|
from django.contrib import admin
|
||
|
from .models import Category
|
||
|
|
||
|
|
||
|
@admin.register(Category)
|
||
|
class CategoryAdmin(admin.ModelAdmin):
|
||
|
list_display = ["name", "order"]
|
||
|
list_editable = ["order"]
|
||
|
ordering = ["order"]
|