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