mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-13 05:07:02 +03:00
13 lines
279 B
Python
13 lines
279 B
Python
from django.contrib import admin
|
|
|
|
from cookbook.recipes.models import Recipe, RecipeIngredient
|
|
|
|
|
|
class RecipeIngredientInline(admin.TabularInline):
|
|
model = RecipeIngredient
|
|
|
|
|
|
@admin.register(Recipe)
|
|
class RecipeAdmin(admin.ModelAdmin):
|
|
inlines = [RecipeIngredientInline]
|