Mercurial > hg > CommitWatcher
comparison commitwatcher/web/templates/listing.html @ 29:826155711744
wip
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sat, 05 Oct 2013 15:50:02 -0700 |
parents | 6ac606ca9ba5 |
children |
comparison
equal
deleted
inserted
replaced
28:f82331d875f0 | 29:826155711744 |
---|---|
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15"> | 4 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15"> |
5 <title>${path}</title> | 5 <title>{{path}}</title> |
6 </head> | 6 </head> |
7 | 7 |
8 <body> | 8 <body> |
9 <h1>${path}</h1> | 9 <h1>{{path}}</h1> |
10 | 10 |
11 <a href="${src}">${src}</a> | 11 <a href="{{src}}">{{src}}</a> |
12 | 12 |
13 <ul> | 13 <ul> |
14 {{for listing in sorted(listing)}} | 14 {{for item in sorted(listing)}} |
15 <li></li> | 15 <li><a href="TODO">{{item}}</a></li> |
16 {{endfor}} | 16 {{endfor}} |
17 </ul> | 17 </ul> |
18 | 18 |
19 </body> | 19 </body> |
20 </html> | 20 </html> |