Mercurial > hg > CommitWatcher
changeset 29:826155711744
wip
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sat, 05 Oct 2013 15:50:02 -0700 |
parents | f82331d875f0 |
children | 4c53f4cc6ffe |
files | commitwatcher/web/templates/listing.html |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/commitwatcher/web/templates/listing.html Sat Oct 05 15:38:32 2013 -0700 +++ b/commitwatcher/web/templates/listing.html Sat Oct 05 15:50:02 2013 -0700 @@ -2,17 +2,17 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15"> -<title>${path}</title> +<title>{{path}}</title> </head> <body> -<h1>${path}</h1> +<h1>{{path}}</h1> -<a href="${src}">${src}</a> +<a href="{{src}}">{{src}}</a> <ul> -{{for listing in sorted(listing)}} - <li></li> +{{for item in sorted(listing)}} + <li><a href="TODO">{{item}}</a></li> {{endfor}} </ul>