Files
PyRIGS/assets/templates/partials/cable_form.html
FreneticScribbler 59756ab86a Remove animation on prefers-reduced-motion/low referesh rate devices
Also normalises handling of asset list cable table & improves its use of space on large devices
2020-10-18 11:15:04 +01:00

31 lines
880 B
HTML

{% load widget_tweaks %}
<div class="card mb-2">
<div class="card-header">
Cable Details
</div>
<div class="card-body">
{% if create or edit or duplicate %}
<div class="form-group">
{% include 'partials/form_field.html' with field=form.cable_type %}
</div>
<div class="form-group">
{% include 'partials/form_field.html' with field=form.length append=form.length.help_text %}
</div>
<div class="form-group">
{% include 'partials/form_field.html' with field=form.csa append=form.csa.help_text %}
</div>
{% else %}
<dl>
<dt>Cable Type</dt>
<dd>{{ object.cable_type|default_if_none:'-' }}</dd>
<dt>Length</dt>
<dd>{{ object.length|default_if_none:'-' }}m</dd>
<dt>Cross Sectional Area</dt>
<dd>{{ object.csa|default_if_none:'-' }}mm²</dd>
</dl>
{% endif %}
</div>
</div>