[Django]-Creating front-end forms like in Django Admin

2👍

Django admin makes extensive use of formsets, see below:

https://docs.djangoproject.com/en/1.6/topics/forms/formsets/

Regarding your query with adding the ‘+’ a la Django admin, you can acheive this with the RelatedFieldWidgetWrapper which you can find here.

👤rix

0👍

According to my experience the easiest way of adding, editing, updating corresponding(related) items on a Form on the front-end, same way like in the django-Admin, is using “django-addanother” which you can use from here. Easy, fast and clean solution on this problem and it works with Django 1.11 too. And it has good documentation, demo also.

👤Zollie

0👍

django-form-admin (.. let enter more characters stackoverflow needs 30 for answer)

👤mirek

Leave a comment