diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-12-03 18:10:48 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-12-03 18:10:48 +0100 |
commit | a649d73a1bd2a9b45eb35d535d40e2454238417c (patch) | |
tree | e73aa757d7b55fcdd3f6badd0c36d97195133b7d /module/web/templates | |
parent | Better Update System (diff) | |
download | pyload-a649d73a1bd2a9b45eb35d535d40e2454238417c.tar.xz |
little webinterface fixes
Diffstat (limited to 'module/web/templates')
-rw-r--r-- | module/web/templates/default.tpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/web/templates/default.tpl b/module/web/templates/default.tpl index 13be260b6..3f5e8d8e8 100644 --- a/module/web/templates/default.tpl +++ b/module/web/templates/default.tpl @@ -11,7 +11,7 @@ %include header title=header, use_js=js, use_css=['default.css','window.css'], redirect=red -%include window id="addlinks", width=400, caption="Add links", body="<textarea rows=10 style='width: 345px;' id='linkarea'></textarea>", button="Add" +%include window id="addlinks", width=400, caption="Add links", body="<input id='pname' type='text' style='width: 345px;' value='Package'/><textarea rows=10 style='width: 345px;' id='linkarea'></textarea>", button="Add" <a class="anchor" name="top" id="top"></a> @@ -199,9 +199,9 @@ this.morph({'color': '#000'}); <ul> -%for id in links['order']: +%for package in links: -<li>{{links[id].url}}</li> +<li>{{package.name}}</li> %end |