mirror of
https://github.com/perstarkse/minne.git
synced 2026-03-19 16:21:30 +01:00
57 lines
1.8 KiB
HTML
57 lines
1.8 KiB
HTML
{% extends "modal_base.html" %}
|
|
|
|
{% block modal_class %}
|
|
flex flex-col min-h-[95%] w-11/12 max-w-[90ch] max-h-[95%]
|
|
{% endblock %}
|
|
|
|
{% block form_attributes %}
|
|
hx-patch="/content/{{text_content.id}}"
|
|
hx-target="#main_section"
|
|
hx-swap="outerHTML"
|
|
class="flex flex-col flex-1 h-full min-h-0"
|
|
{% endblock %}
|
|
|
|
{% block modal_content %}
|
|
<h3 class="text-xl font-extrabold tracking-tight">Edit Content</h3>
|
|
<div class="flex flex-col gap-3 flex-1 min-h-0">
|
|
<label class="w-full">
|
|
<div class="text-xs uppercase tracking-wide opacity-70 mb-1">Context</div>
|
|
<input type="text" name="context" value="{{ text_content.context }}" class="nb-input w-full">
|
|
</label>
|
|
<label class="w-full">
|
|
<div class="text-xs uppercase tracking-wide opacity-70 mb-1">Category</div>
|
|
<input type="text" name="category" value="{{ text_content.category }}" class="nb-input w-full">
|
|
</label>
|
|
<label class="w-full flex-1 flex flex-col min-h-0">
|
|
<div class="text-xs uppercase tracking-wide opacity-70 mb-1">Text</div>
|
|
<textarea name="text" class="nb-input w-full flex-1 min-h-0 h-full resize-none overflow-y-auto">{{ text_content.text
|
|
}}</textarea>
|
|
</label>
|
|
</div>
|
|
<script>
|
|
(function () {
|
|
const form = document.getElementById('modal_form');
|
|
if (!form) return;
|
|
|
|
if (document.getElementById('main_section')) {
|
|
form.setAttribute('hx-target', '#main_section');
|
|
form.setAttribute('hx-swap', 'outerHTML');
|
|
return;
|
|
}
|
|
|
|
if (document.getElementById('latest_content_section')) {
|
|
form.setAttribute('hx-target', '#latest_content_section');
|
|
form.setAttribute('hx-swap', 'outerHTML');
|
|
return;
|
|
}
|
|
|
|
form.removeAttribute('hx-target');
|
|
form.setAttribute('hx-swap', 'none');
|
|
})();
|
|
</script>
|
|
{% endblock %}
|
|
|
|
{% block primary_actions %}
|
|
<button type="submit" class="nb-btn nb-cta">Save Changes</button>
|
|
{% endblock %}
|