Answer the question
In order to leave comments, you need to log in
Is it possible to add just a model to the wagtail admin?
Good afternoon)
Is it possible to add a non- child Page model to the wagtail admin panel ?
For example:
class Order(models.Model):
created = models.DateField()
# ...
Answer the question
In order to leave comments, you need to log in
Of course you can. Everything that was in Django continues to work here.
You can use snippets :
@register_snippet
class Order(models.Model):
created = models.DateField()
panels = [
FieldPanel('created '),
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question