Selaa lähdekoodia

refactor templates to use a base

david 5 vuotta sitten
vanhempi
commit
65c381390e
3 muutettua tiedostoa jossa 33 lisäystä ja 31 poistoa
  1. 15 0
      lists/templates/base.html
  2. 5 14
      lists/templates/home.html
  3. 13 17
      lists/templates/list.html

+ 15 - 0
lists/templates/base.html

@@ -0,0 +1,15 @@
+<html>
+  <head>
+    <title>To-Do lists</title>
+  </head>
+
+  <body>
+    <h1>{% block header_text %}{% endblock %}</h1>
+    <form method="POST" action="{% block form_action %}{% endblock %}">
+      <input name="item_text" id="id_new_item" placeholder="Enter a to-do item" />
+      {% csrf_token %}
+    </form>
+    {% block table %}
+    {% endblock %}
+  </body>
+</html>

+ 5 - 14
lists/templates/home.html

@@ -1,14 +1,5 @@
-<html>
-    <head>
-        <title>To-Do lists</title>
-    </head>
-    <body>
-        <h1>Start a new To-Do list</h1>
-        <form method="POST" action="/lists/new">
-            <p style="text-align: center;">
-                <input name="item_text" id="id_new_item" placeholder="Enter a to-do item"/>
-            </p>
-            {% csrf_token %}
-        </form>
-    </body>
-</html>
+{% extends "base.html" %}
+
+{% block header_text %}Start a new To-Do list{% endblock %}
+
+{% block form_action %}/lists/new{% endblock %}

+ 13 - 17
lists/templates/list.html

@@ -1,17 +1,13 @@
-<html>
-    <head>
-        <title>To-Do lists</title>
-    </head>
-    <body>
-        <h1>Your To-Do list</h1>
-        <form method="POST" action="/lists/{{ list.id }}/add_item">
-            <input name="item_text" id="id_new_item" placeholder="Enter a to-do item"/>
-            {% csrf_token %}
-        </form>
-        <table id="id_list_table">
-            {% for item in list.item_set.all %}
-                <tr><td>{{forloop.counter}}: {{ item.text }}</td></tr>
-            {% endfor %}
-        </table>
-    </body>
-</html>
+{% extends 'base.html' %}
+
+{% block header_text %}Your To-Do list{% endblock %}
+
+{% block form_action %}/lists/{{ list.id }}/add_item{% endblock %}
+
+{% block table %}
+  <table id="id_list_table">
+    {% for item in list.item_set.all %}
+      <tr><td>{{ forloop.counter }}: {{ item.text }}</td></tr>
+    {% endfor %}
+  </table>
+{% endblock %}