From 29f9dc8fb3396b03d732ebcbeb1cc8f00fe13897 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Wed, 25 Aug 2010 18:22:27 +0200 Subject: new dirs --- module/web/templates/default/base.html | 317 +++++++++++++++++++++++++++++++++ 1 file changed, 317 insertions(+) create mode 100644 module/web/templates/default/base.html (limited to 'module/web/templates/default/base.html') diff --git a/module/web/templates/default/base.html b/module/web/templates/default/base.html new file mode 100644 index 000000000..fd18aee84 --- /dev/null +++ b/module/web/templates/default/base.html @@ -0,0 +1,317 @@ +{% load i18n %} + + + + + + + + + + + + + + + + + + +{% block title %}pyLoad {% trans "Webinterface" %}{% endblock %} + + + +{% block head %} +{% endblock %} + + + + +
+ +
+ +{% if user.is_authenticated %} + + +Captcha: +{% trans "Captcha waiting" %} + + +User:{{user.username}} + +{% else %} + {% trans "Please Login!" %} +{% endif %} + +
+ + + +
+ +
+ +
+
+ +{% if perms.pyload.can_change_status %} + +{% endif %} + +{% if perms.pyload.can_see_dl %} +
+{% endif %} + +
+ +
+ +

{% block subtitle %}pyLoad - {% trans "Webinterface" %}{% endblock %}

+ +{% block statusbar %} +{% endblock %} + + +
+ +
+
+ +{% for message in messages %} +

{{message}}

+{% endfor %} + +{% block content %} +{% endblock content %} + +
+ + +
+
+ +{% include "default/window.html" %} +{% include "default/captcha.html" %} + + -- cgit v1.2.3