mirror of
https://github.com/perstarkse/minne.git
synced 2026-03-24 10:21:46 +01:00
33 lines
933 B
HTML
33 lines
933 B
HTML
{% extends "modal_base.html" %}
|
|
|
|
{% block form_attributes %}
|
|
hx-patch="/content/{{text_content.id}}"
|
|
hx-target="#text_content_cards"
|
|
hx-swap="outerHTML"
|
|
{% endblock %}
|
|
|
|
{% block modal_content %}
|
|
<h3 class="text-lg font-bold mb-4">Edit Content</h3>
|
|
|
|
<div class="form-control">
|
|
<label class="floating-label">
|
|
<span class="label-text">Content Name</span>
|
|
<input type="text" name="name" value="{{ text_content.text }}" class="w-full input input-bordered">
|
|
</label>
|
|
</div>
|
|
|
|
<input type="text" name="id" value="{{ text_content.id }}" class="hidden">
|
|
|
|
<div class="form-control mt-4 ">
|
|
<label class="floating-label">
|
|
<span class="label-text">Description</span>
|
|
<textarea name="description" class="textarea textarea-bordered h-32 w-full">{{ text_content.text}}</textarea>
|
|
</label>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block primary_actions %}
|
|
<button type="submit" class="btn btn-primary">
|
|
Save Changes
|
|
</button>
|
|
{% endblock %} |