source: templates/list.html@ bfca48b

Last change on this file since bfca48b was 0e077ef, checked in by ManuelTrajcev <manueltrajcev7@…>, 3 weeks ago

2 views wtih controllers and templates added

  • Property mode set to 100644
File size: 274 bytes
Line 
1<!DOCTYPE html>
2<html>
3<head>
4 <title>{{ heading }}</title>
5</head>
6<body>
7 <h1>{{ heading }}</h1>
8 <ul>
9 {% for d in data %}
10 <li>{{ d }}</li>
11 {% empty %}
12 <li>No data found.</li>
13 {% endfor %}
14 </ul>
15</body>
16</html>
Note: See TracBrowser for help on using the repository browser.