[Fixed]-Django: empty formset in template

1👍

Try to initialize formset with instance to fill it with related data:

route_formset = RouteFormSet(instance=self.object)

Leave a comment