This commit is contained in:
Ross
2025-12-04 21:01:45 +00:00
commit 75398cf53f
28 changed files with 599 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
{% extends 'cards/base.html' %}
{% block content %}
<div class="controls">
<button hx-get="{% url 'cards:create' %}" hx-target="#htmx-form" hx-swap="innerHTML">Add Dinosaur</button>
</div>
<div id="htmx-form"></div>
<div id="cards-list">
{% include 'cards/_cards_list.html' %}
</div>
{% endblock %}