PyCharm Entwicklungsumgebung
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
639 B

<div class="container">
{% load read_dictonary %}
<!-- <form method="post" class="form-group">-->
{{ description }}
{% for field in myform %}
<div class="form-group">
{% if field.html_name == "description" %}
{% else %}
<label for="{{ field.id_for_label }}">{{ field.label }}</label>
{{field }}
{% endif %}
</div>
{% endfor %}
<button type="submit" class="btn btn-primary" name="{{ modelname }}Button">Submit</button>
<!--</form> -->
</div>