Guest User

Untitled

a guest
Jan 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class Recipe(models.Model):
  2. name = models.CharField(max_length=128)
  3. instructions = models.TextField(blank=True)
  4.  
  5. class RecipeAdmin(NestedModelAdmin):
  6. model = Recipe
  7. inlines = (VariationsInline,)
Add Comment
Please, Sign In to add comment