Files
training.django/source/orm/library/admin/genre.py
Steve Kossouho e3ebf6bf4f Add documentation and source
Added documentation, source and extra files.
2025-07-02 20:26:50 +02:00

15 lines
251 B
Python

from django.contrib import admin
from library.models import Genre
@admin.register(Genre)
class GenreAdmin(admin.ModelAdmin):
"""
Admin for book genres.
"""
list_display = ["id", "uuid", "code_name", "name"]
list_per_page = 25