forked from enviPath/enviPy
35 lines
942 B
HTML
35 lines
942 B
HTML
{% if meta.can_edit %}
|
|
<li>
|
|
<a
|
|
class="button"
|
|
onclick="document.getElementById('edit_scenario_modal').showModal(); return false;"
|
|
>
|
|
<i class="glyphicon glyphicon-trash"></i> Edit Scenario</a
|
|
>
|
|
</li>
|
|
<li>
|
|
<a
|
|
class="button"
|
|
onclick="document.getElementById('add_additional_information_modal').showModal(); return false;"
|
|
>
|
|
<i class="glyphicon glyphicon-trash"></i> Add Additional Information</a
|
|
>
|
|
</li>
|
|
<li>
|
|
<a
|
|
class="button"
|
|
onclick="document.getElementById('update_scenario_additional_information_modal').showModal(); return false;"
|
|
>
|
|
<i class="glyphicon glyphicon-trash"></i> Set Additional Information</a
|
|
>
|
|
</li>
|
|
<li>
|
|
<a
|
|
class="button"
|
|
onclick="document.getElementById('generic_delete_modal').showModal(); return false;"
|
|
>
|
|
<i class="glyphicon glyphicon-trash"></i> Delete Scenario</a
|
|
>
|
|
</li>
|
|
{% endif %}
|