diff options
author | Helmut Grohne <helmut@subdivi.de> | 2013-03-04 18:53:23 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2013-03-04 18:53:23 +0100 |
commit | 0a74c2ace7f307e49d648098e036ec8d49260ec6 (patch) | |
tree | 58fc75984dc84fd5cc6d191c15dd5cfef49ff3fd /webapp.py | |
parent | 4e8aaf87daf220396ebfec14d473826cec7d0cdd (diff) | |
download | debian-dedup-0a74c2ace7f307e49d648098e036ec8d49260ec6.tar.gz |
webapp: fix index template
Apparently not all browsers understand <a ... /> in all rendering modes.
Diffstat (limited to 'webapp.py')
-rwxr-xr-x | webapp.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -132,7 +132,7 @@ index_template = jinjaenv.from_string( Enter binary package to inspect - Note: Non-existing packages will result in <b>404</b>-Errors <form id="pkg_form"> <label for="pkg_name">Name: <input type="text" size="30" name="pkg_name" id="pkg_name"> - <input type="submit" value="Go"> Permanent Link: <a id="perma_link" href="#" /> + <input type="submit" value="Go"> Permanent Link: <a id="perma_link" href="#"></a> </form> </fieldset></div></li> <li>To inspect a combination of binary packages go to <pre>compare/<firstpackage>/<secondpackage></pre> Example: <a href="compare/git/git">compare/git/git</a></li> |