Selaa lähdekoodia

Front page HTML now generated from a template

david 5 vuotta sitten
vanhempi
commit
8a4cac9ae5
2 muutettua tiedostoa jossa 11 lisäystä ja 2 poistoa
  1. 2 1
      functional_tests.py
  2. 9 1
      lists/templates/home.html

+ 2 - 1
functional_tests.py

@@ -28,7 +28,8 @@ class NewVisitorTest(unittest.TestCase):
         table = self.browser.find_element_by_id('id_list_table')
         rows = table.find_elements_by_tag_name('tr')
         self.assertTrue(
-            any(row.text == '1: Buy peacock feathers' for row in rows)
+            any(row.text == '1: Buy peacock feathers' for row in rows),
+            "New to-do item did not show up in table!"
         )
         self.fail('Finish the test!')
 

+ 9 - 1
lists/templates/home.html

@@ -1,3 +1,11 @@
 <html>
-    <title>To-Do lists</title>
+    <head>
+        <title>To-Do lists</title>
+    </head>
+    <body>
+        <h1>Your To-Do list</h1>
+        <input id="id_new_item" placeholder="Enter a to-do item"/>
+        <table id="id_list_table">
+        </table>
+    </body>
 </html>