1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-12 05:20:26 +00:00
mycorrhiza/templates/delete.qtpl
2020-10-03 22:05:10 +05:00

26 lines
892 B
Plaintext

This dialog is to be shown to a user when they try to delete a hypha.
{% func DeleteAskHTML(hyphaName string, isOld bool) %}
<main>
{%= navHTML(hyphaName, "delete-ask") %}
{% if isOld %}
<section>
<h1>Delete {%s hyphaName %}?</h1>
<p>Do you really want to delete hypha <em>{%s hyphaName %}</em>?</p>
<p>In this version of MycorrhizaWiki you cannot undelete a deleted hypha but the history can still be accessed.</p>
<p><a href="/delete-confirm/{%s hyphaName %}"><strong>Confirm</strong></a></p>
<p><a href="/page/{%s hyphaName %}">Cancel</a></p>
</section>
{% else %}
{%= cannotDeleteDueToNonExistence(hyphaName) %}
{% endif %}
</main>
{% endfunc %}
{% func cannotDeleteDueToNonExistence(hyphaName string) %}
<section>
<h1>Cannot delete {%s hyphaName %}</h1>
<p>This hypha does not exist.</p>
<p><a href="/page/{%s hyphaName %}">Go back</a></p>
</section>
{% endfunc %}