mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-16 21:12:13 +00:00
29 lines
792 B
HTML
29 lines
792 B
HTML
{% extends 'base_assets.html' %}
|
|
{% load widget_tweaks %}
|
|
{% load button from filters %}
|
|
{% load cache %}
|
|
|
|
{% block content %}
|
|
{% if create %}
|
|
<form method="POST" action="{% url 'cable_test'%}">
|
|
{% elif edit %}
|
|
<form method="POST" action="{% url 'cable_test' object.id %}">
|
|
{% endif %}
|
|
{% include 'form_errors.html' %}
|
|
{% csrf_token %}
|
|
<input type="hidden" name="id" value="{{ object.id|default:0 }}" hidden="">
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
{% for field in form %}
|
|
<div class="form-group">
|
|
{% include 'partials/form_field.html' with field=field %}
|
|
</div>
|
|
{% endfor %}
|
|
<div class="text-right">
|
|
{% button 'submit' %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|