16 lines
667 B
HTML
16 lines
667 B
HTML
<div class="card" id="card-{{ card.pk }}">
|
|
<h3>{{ card.name }}</h3>
|
|
<div><strong>Era:</strong> {{ card.get_era_display }} — <strong>Diet:</strong> {{ card.get_diet_display }}</div>
|
|
<div>{{ card.description|linebreaksbr }}</div>
|
|
<ul>
|
|
<li>Speed: {{ card.speed }}</li>
|
|
<li>Weight: {{ card.weight }}</li>
|
|
<li>Intelligence: {{ card.intelligence }}</li>
|
|
<li>Height: {{ card.height }}</li>
|
|
</ul>
|
|
<div>
|
|
<button hx-get="{% url 'cards:edit' card.pk %}" hx-target="#htmx-form" hx-swap="innerHTML">Edit</button>
|
|
<button hx-post="{% url 'cards:delete' card.pk %}" hx-confirm="Delete this card?" hx-swap="none">Delete</button>
|
|
</div>
|
|
</div>
|