mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2025-12-24 02:39:20 -05:00
8 lines
144 B
Python
8 lines
144 B
Python
from django.contrib import admin
|
|
from .models import *
|
|
|
|
|
|
admin.site.register(Recipe)
|
|
admin.site.register(Keyword)
|
|
admin.site.register(Category)
|