14 lines
381 B
Python
14 lines
381 B
Python
from django.contrib import admin
|
|
|
|
from .models import Recipe,IngredientWithAmount, Ingredient
|
|
# Register your models here.
|
|
|
|
class IngredientWithAmountInline(admin.TabularInline):
|
|
model=IngredientWithAmount
|
|
|
|
class RecipeAdmin(admin.ModelAdmin):
|
|
inlines = [ IngredientWithAmountInline, ]
|
|
admin.site.register(Recipe, RecipeAdmin)
|
|
|
|
admin.site.register(Ingredient)
|