2020-11-16 15:26:03 +00:00
|
|
|
{% import "net/http" %}
|
2021-01-26 05:41:57 +00:00
|
|
|
{% import "github.com/bouncepaw/mycorrhiza/util" %}
|
2020-11-16 15:26:03 +00:00
|
|
|
|
|
|
|
{% func EditHTML(rq *http.Request, hyphaName, textAreaFill, warning string) %}
|
2021-02-23 14:25:07 +00:00
|
|
|
{%s= NavHTML(rq, hyphaName, "edit") %}
|
2021-01-26 05:41:57 +00:00
|
|
|
<div class="layout">
|
|
|
|
<main class="main-width edit edit_no-preview">
|
|
|
|
<h1 class="edit__title">Edit {%s util.BeautifulName(hyphaName) %}</h1>
|
2020-11-16 15:26:03 +00:00
|
|
|
{%s= warning %}
|
|
|
|
<form method="post" class="edit-form"
|
|
|
|
action="/upload-text/{%s hyphaName %}">
|
|
|
|
<textarea name="text">{%s textAreaFill %}</textarea>
|
|
|
|
<br/>
|
2021-01-16 16:42:18 +00:00
|
|
|
<input type="submit" name="action" value="Save" class="edit-form__save"/>
|
|
|
|
<input type="submit" name="action" value="Preview" class="edit-form__preview">
|
|
|
|
<a href="/page/{%s hyphaName %}" class="edit-form__cancel">Cancel</a>
|
2020-11-16 15:26:03 +00:00
|
|
|
</form>
|
|
|
|
</main>
|
2021-01-26 05:41:57 +00:00
|
|
|
</div>
|
2020-08-31 17:52:26 +00:00
|
|
|
{% endfunc %}
|
2021-01-16 16:42:18 +00:00
|
|
|
|
|
|
|
{% func PreviewHTML(rq *http.Request, hyphaName, textAreaFill, warning string, renderedPage string) %}
|
2021-02-23 14:25:07 +00:00
|
|
|
{%s= NavHTML(rq, hyphaName, "edit") %}
|
2021-01-26 05:41:57 +00:00
|
|
|
<div class="layout">
|
|
|
|
<main class="main-width edit edit_with-preview">
|
2021-02-23 14:25:07 +00:00
|
|
|
<h1>Edit {%s util.BeautifulName(hyphaName) %} (preview)</h1>
|
2021-01-16 16:42:18 +00:00
|
|
|
{%s= warning %}
|
|
|
|
<form method="post" class="edit-form"
|
|
|
|
action="/upload-text/{%s hyphaName %}">
|
|
|
|
<textarea name="text">{%s textAreaFill %}</textarea>
|
|
|
|
<br/>
|
|
|
|
<input type="submit" name="action" value="Save" class="edit-form__save"/>
|
|
|
|
<input type="submit" name="action" value="Preview" class="edit-form__preview">
|
|
|
|
<a href="/page/{%s hyphaName %}" class="edit-form__cancel">Cancel</a>
|
|
|
|
</form>
|
|
|
|
<p class="warning">Note that the hypha is not saved yet. You can preview the changes ↓</p>
|
|
|
|
<section class="edit__preview">{%s= renderedPage %}</section>
|
|
|
|
</main>
|
2021-01-26 05:41:57 +00:00
|
|
|
</div>
|
2021-01-16 16:42:18 +00:00
|
|
|
{% endfunc %}
|