mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-05 06:13:55 +01:00
Reorder path buttons
This commit is contained in:
parent
eeebbb4ca7
commit
02e58e6420
1 changed files with 6 additions and 6 deletions
|
@ -3,6 +3,12 @@
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<h5 class="card-header">
|
<h5 class="card-header">
|
||||||
{{ path.display_name }}
|
{{ path.display_name }}
|
||||||
|
<button hx-get="{% url "character:remove_last_in_path" character_pk=character.pk path_pk=path.pk %}"
|
||||||
|
hx-target="[data-path-id='{{ path.pk }}']"
|
||||||
|
hx-swap="outerHTML"
|
||||||
|
class="btn btn-sm btn-primary">
|
||||||
|
<i class="fa-solid fa-minus"></i>
|
||||||
|
</button>
|
||||||
{% if path|has_next_capability:character %}
|
{% if path|has_next_capability:character %}
|
||||||
<button hx-get="{% url "character:add_next_in_path" character_pk=character.pk path_pk=path.pk %}"
|
<button hx-get="{% url "character:add_next_in_path" character_pk=character.pk path_pk=path.pk %}"
|
||||||
hx-target="[data-path-id='{{ path.pk }}']"
|
hx-target="[data-path-id='{{ path.pk }}']"
|
||||||
|
@ -11,12 +17,6 @@
|
||||||
<i class="fa-solid fa-plus"></i>
|
<i class="fa-solid fa-plus"></i>
|
||||||
</button>
|
</button>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<button hx-get="{% url "character:remove_last_in_path" character_pk=character.pk path_pk=path.pk %}"
|
|
||||||
hx-target="[data-path-id='{{ path.pk }}']"
|
|
||||||
hx-swap="outerHTML"
|
|
||||||
class="btn btn-sm btn-primary">
|
|
||||||
<i class="fa-solid fa-minus"></i>
|
|
||||||
</button>
|
|
||||||
</h5>
|
</h5>
|
||||||
{% if path.notes %}
|
{% if path.notes %}
|
||||||
<div class="card-body text-bg-light">{{ path.notes }}</div>
|
<div class="card-body text-bg-light">{{ path.notes }}</div>
|
||||||
|
|
Loading…
Reference in a new issue