This commit is contained in:
Ross
2024-12-16 12:38:44 +00:00
parent 6a58cdb14f
commit 99862e2e60
+12 -3
View File
@@ -26,7 +26,11 @@
<td>{{output.field_name}}</td> <td>{{output.field_name}}</td>
<td>{{output.field_status}}</td> <td>{{output.field_status}}</td>
<td>{{output.field_type}}</td> <td>{{output.field_type}}</td>
<td>RADCODESET{{output.field_codeset}}</td> <td>
{% if output.field_codeset %}
RADCODESET{{output.field_codeset}}
{% endif %}
</td>
</tr> </tr>
@@ -42,7 +46,13 @@
{% for option in options %} {% for option in options %}
<tr><td>RADCODESET{{codeset}}</td><td>{{option}}</td></tr> <tr>
<td>
{% if codeset %}
RADCODESET{{codeset}}
{% endif %}
</td>
<td>{{option}}</td></tr>
{% endfor %} {% endfor %}
@@ -54,4 +64,3 @@
{% endblock content %} {% endblock content %}