Browse Source

fix for a typo

`endfor` should be inside the table tag
Dmitri Sotnikov 12 years ago
parent
commit
2e3231ef56
1 changed files with 3 additions and 3 deletions
  1. 3 3
      luminus/hello/src/hello/views/templates/home.html

+ 3 - 3
luminus/hello/src/hello/views/templates/home.html

@@ -12,7 +12,7 @@
     <td>{{message.id}}</td>
     <td>{{message.message}}</td>
   </tr>
-</table>  
   {% endfor %}
-
-{% endblock %}
+</table>  
+  
+{% endblock %}