9 lines
426 B
HTML
9 lines
426 B
HTML
{% load i18n %}
|
|
<form hx-post="{% url 'journal:collection_update_item_note' collection.uuid item.uuid %}"
|
|
hx-target="#collection_items">
|
|
<input name="note" value="{{ note }}">
|
|
<input type="submit" style="width:unset;" value="修改">
|
|
<button style="width:unset"
|
|
hx-get="{% url 'journal:collection_retrieve_items' collection.uuid %}?edit=1"
|
|
hx-target="#collection_items">取消</button>
|
|
</form>
|