django-formrenderingtools provides the “form_layouts” template tag library, which itself provides the following template tags:
The template tags allow you to create customized templates for forms, fields or labels. See the global recipe in <./tutorial.html>.
Renders a full form, with all errors (field and non field errors), fields and labels.
By default, uses {% field_list %}.
{% load form_layouts %}
{% form %}
In this case:
{% load form_layouts %}
{% form form=my_form layout="my_layout" fields="a_field_name,another_field" exclude_fields="some_field_to_ignore" %}