1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2025-01-31 11:29:09 +00:00
mycorrhiza/templates/http_mutators.qtpl

14 lines
403 B
Plaintext
Raw Normal View History

2020-08-31 17:52:26 +00:00
{% func EditHTML(hyphaName, textAreaFill, warning string) %}
2020-10-30 13:25:48 +00:00
<main class="edit">
2020-08-31 17:52:26 +00:00
<h1>Edit {%s hyphaName %}</h1>
{%s= warning %}
2020-10-30 13:25:48 +00:00
<form method="post" class="edit-form"
2020-08-31 17:52:26 +00:00
action="/upload-text/{%s hyphaName %}">
<textarea name="text">{%s textAreaFill %}</textarea>
<br/>
<input type="submit"/>
<a href="/page/{%s hyphaName %}">Cancel</a>
</form>
</main>
{% endfunc %}