BrainMinder/assets/templates/notebooks/form.tmpl

59 lines
1.6 KiB
Cheetah
Raw Normal View History

2024-08-22 10:13:16 +02:00
{{ define "page:content" }}
<form
method="POST"
hx-post="{{.formAction}}"
hx-target="{{.formTarget}}"
style="margin-bottom: 10px;"
>
<div class="w3-container page-container">
<p>
<label for="notebook-title">Title</label>
<input
name="Title"
2024-11-17 20:12:20 +01:00
class=" w3-border"
2024-08-22 10:13:16 +02:00
id="notebook-title"
type="text"
value="{{.notebook.Title}}"
/>
</p>
<p>
<label for="type-icon">Icon</label>
<input
name="Icon"
2024-11-17 20:12:20 +01:00
class=" w3-border"
2024-08-22 10:13:16 +02:00
id="notebook-icon"
type="text"
value="{{.notebook.Icon}}"
/>
</p>
<p>
<label for="type-description">Description</label>
<textarea
name="Description"
2024-11-17 20:12:20 +01:00
class=" w3-border"
2024-08-22 10:13:16 +02:00
id="notebook-description"
type="text"
rows="5"
>{{.notebook.Description}}</textarea
>
</p>
2024-12-08 21:07:22 +01:00
<p class="hide-small">
<button type="submit" class="main"><i class="bi bi-floppy" title="Save"></i> Save</button>
<a class="button secondary" hx-target="#page-content" hx-push-url="true" hx-get="/notebooks"><i class="bi bi-arrow-left-circle" title="Back"></i> Back</a>
2024-08-22 10:13:16 +02:00
</p>
</div>
2024-12-08 21:07:22 +01:00
<div id="footer-navbar-container">
<div id="footer-navbar" class="bar hide-medium hide-large">
<div class="bar-item">
<button type="submit" class="w3-btn w3-metro-dark-blue w3-round-large" title="Save"><i class="bi bi-floppy"></i></button>
</div>
<div class="bar-item">
<a class="button secondary" href="/notebooks" hx-get="/notebooks" hx-push-url="true" hx-target="#page-content" title="Back"><i class="bi bi-arrow-left-circle"></i></a>
</div>
2024-08-22 10:13:16 +02:00
</div>
</form>
{{ end }}