diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-12-21 19:59:59 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-12-21 19:59:59 +0100 |
commit | 9453269684b8d17411d8bbc4ecd0c7958670ff42 (patch) | |
tree | c44940bb96b054f46d0db279a548de3e278c6e8d /module/web/templates/default/logs.html | |
parent | reverted files, pyload.db fix (diff) | |
download | pyload-9453269684b8d17411d8bbc4ecd0c7958670ff42.tar.xz |
log view, progressbar test
Diffstat (limited to 'module/web/templates/default/logs.html')
-rw-r--r-- | module/web/templates/default/logs.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/module/web/templates/default/logs.html b/module/web/templates/default/logs.html index 39f4b8660..f9b0504d9 100644 --- a/module/web/templates/default/logs.html +++ b/module/web/templates/default/logs.html @@ -13,4 +13,13 @@ <li class="right" class="selected"> <a href="{% url logs %}" class="action index" accesskey="x" rel="nofollow"><img src="{{ MEDIA_URL }}img/head-menu-index.png" alt="" />Logs</a> </li> +{% endblock %} + +{% block content %} +<ul> +{% for line in log %} + <li>{{line.line}}: {{line.content}}</li> +{% endfor %} +</ul> +<a href="{% url logs %}"><< Start</a> <a href="{% url logs prev %}">< prev</a> <a href="{% url logs next %}">next ></a> {% endblock %}
\ No newline at end of file |