Mercurial > hg > CommitWatcher
annotate commitwatcher/web/templates/listing.html @ 42:cd590e1722d6
dup
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 05 Nov 2013 03:03:06 -0800 |
parents | 826155711744 |
children |
rev | line source |
---|---|
26 | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
2 <html> | |
3 <head> | |
4 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15"> | |
29 | 5 <title>{{path}}</title> |
26 | 6 </head> |
7 | |
8 <body> | |
29 | 9 <h1>{{path}}</h1> |
26 | 10 |
29 | 11 <a href="{{src}}">{{src}}</a> |
26 | 12 |
13 <ul> | |
29 | 14 {{for item in sorted(listing)}} |
15 <li><a href="TODO">{{item}}</a></li> | |
26 | 16 {{endfor}} |
17 </ul> | |
18 | |
19 </body> | |
20 </html> |