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:
@ -233,6 +233,25 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% if property_models %}
|
||||
<div class="form-control mb-3">
|
||||
<label class="label" for="prediction-setting-property-models">
|
||||
<span class="label-text">Select Property Models</span>
|
||||
</label>
|
||||
<select
|
||||
id="prediction-setting-property-models"
|
||||
name="prediction-setting-property-models"
|
||||
class="select select-bordered w-full"
|
||||
multiple
|
||||
>
|
||||
<option value="" disabled selected>Select the model</option>
|
||||
{% for pm in property_models %}
|
||||
<option value="{{ pm.url }}">{{ pm.name|safe }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="form-control">
|
||||
<label class="label cursor-pointer justify-start gap-3">
|
||||
<input
|
||||
|
||||
Reference in New Issue
Block a user