mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
31 lines
875 B
HTML
31 lines
875 B
HTML
{% load widget_tweaks %}
|
|
<div class="card">
|
|
<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>
|