[Feature] PEPPER in enviPath (#332)

Co-authored-by: Tim Lorsbach <tim@lorsba.ch>
Reviewed-on: enviPath/enviPy#332
This commit is contained in:
2026-03-06 22:11:22 +13:00
parent 6e00926371
commit c6ff97694d
43 changed files with 3793 additions and 371 deletions

View File

@ -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>