forked from enviPath/enviPy
[Feature] PEPPER in enviPath (#332)
Co-authored-by: Tim Lorsbach <tim@lorsba.ch> Reviewed-on: enviPath/enviPy#332
This commit is contained in:
@ -87,6 +87,39 @@
|
||||
<td>Expansion Scheme</td>
|
||||
<td>{{ setting_to_render.expansion_scheme }}</td>
|
||||
</tr>
|
||||
|
||||
{% if setting_to_render.property_models.all %}
|
||||
<tr>
|
||||
{% for prop_model in setting_to_render.property_models.all %}
|
||||
<td>Property Models</td>
|
||||
<td>
|
||||
<div class="space-y-2">
|
||||
<table class="table-xs table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Property Type</th>
|
||||
<th>Model</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>{{ prop_model.instance.display }}</td>
|
||||
<td>
|
||||
<a
|
||||
href="{{ prop_model.url }}"
|
||||
class="link link-primary"
|
||||
>
|
||||
{{ prop_model.name }}
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
{% endfor %}
|
||||
</tr>
|
||||
{% endif %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user