Branded UI Fixed
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
{% for stratifier in include.group.stratifier %}
|
||||
<tr>
|
||||
{%include row-header.html header='Stratifier' %}
|
||||
<td class="content-container">
|
||||
{% if stratifier.id.exists() %}
|
||||
<em>ID</em>: {{stratifier.id}}
|
||||
{% if stratifier.code.exists() or stratifier.description.exists() %}
|
||||
<br />
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% if stratifier.code.exists() %}
|
||||
{% if stratifier.code.coding.first().display.exists() %}
|
||||
<em>Code</em>: {{stratifier.code.coding.first().display}}
|
||||
{% else %}
|
||||
<em>Code</em>: {{stratifier.code}}
|
||||
{% endif %}
|
||||
{% if stratifier.description.exists() %}
|
||||
<br />
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% if stratifier.description.exists() %}
|
||||
<em>Description</em>: {{stratifier.description}}
|
||||
{% endif %}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
Reference in New Issue
Block a user