Branded UI Fixed

This commit is contained in:
2025-09-28 04:32:17 +00:00
parent 0f0087d756
commit 3c281adb2c
193 changed files with 19151 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
{% for dataRequirement in include.dataRequirement.distinct() %}
<tr>
<th scope="row" class="row-header">{{include.header}}</th>
<td class="content-container">
<em>Type</em>: {{dataRequirement.type}}
<br />
{% if dataRequirement.profile.exists() %}
<em>Profile(s)</em>:
{% for profile in dataRequirement.profile %}
{{profile}}
<br />
{% endfor %}
{% endif %}
{% if dataRequirement.mustSupport.exists() %}
<em>Must Support Elements</em>: {{dataRequirement.mustSupport.join(', ')}}
<br />
{% endif %}
{% if dataRequirement.codeFilter.exists() %}
<em>Code Filter(s)</em>:
<br />
{% for codeFilter in dataRequirement.codeFilter %}
{% if codeFilter.path.exists() %}
<span class="tab-one"><em>Path</em>: {{codeFilter.path}}</span>
<br />
{% endif %}
{% if codeFilter.searchParam.exists() %}
<span class="tab-one"><em>Search Parameter</em>: {{codeFilter.searchParam}}</span>
<br />
{% endif %}
{% if codeFilter.valueSet.exists() %}
<span class="tab-one"><em>ValueSet</em>:</span> {{codeFilter.valueSet}}
<br />
{% endif %}
{% if codeFilter.code.exists() %}
<span class="tab-one"><em>Code</em>: {{codeFilter.code.join(', ')}}</span>
<br />
{% endif %}
{% endfor %}
{% endif %}
</td>
</tr>
{% endfor %}