Mercurial > public > sg101
view smiley/admin.py @ 1211:b492d640c285 modernize tip
Added some tests for core.tasks.
Could not get one test to work. :(
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 06 Feb 2025 20:58:33 -0600 |
parents | ee87ea74d46b |
children |
line wrap: on
line source
""" This file contains the automatic admin site definitions for the Smiley models. """ from django.contrib import admin from smiley.models import Smiley class SmileyAdmin(admin.ModelAdmin): list_display = ('title', 'code', 'html', 'is_extra') list_filter = ('is_extra', ) admin.site.register(Smiley, SmileyAdmin)