From a8d3e8341eee6af4c778f512d7f8584c476d49fe Mon Sep 17 00:00:00 2001 From: RaNaN Date: Thu, 3 Oct 2013 19:21:05 +0200 Subject: basically working web setup --- pyload/web/app/templates/default/setup/system.html | 57 ++++++++++++++++++++-- 1 file changed, 54 insertions(+), 3 deletions(-) (limited to 'pyload/web/app/templates/default/setup/system.html') diff --git a/pyload/web/app/templates/default/setup/system.html b/pyload/web/app/templates/default/setup/system.html index 84a217b19..0c5023669 100644 --- a/pyload/web/app/templates/default/setup/system.html +++ b/pyload/web/app/templates/default/setup/system.html @@ -1,5 +1,56 @@ -

{{ _ "System" }}

+

{{ _ "System" }}

-

{{_ "Dependencies" }}

+
+ {{#each system}} +
{{ @key }}
+
{{ this }}
+ {{/each}} +
-

{{ _ "Optional" }}

\ No newline at end of file +

{{_ "Dependencies" }}

+
+ {{#each deps.core}} +
{{ name }}
+
+ {{#if avail}} + + + {{#if v}} + ({{v}}) + {{/if}} + + {{else}} + + + + {{/if}} +
+ {{/each}} +
+ + +

{{ _ "Optional" }}

+
+ {{#each deps.opt}} +
{{ name }}
+
+ {{#if avail}} + + {{ _ "available" }} + {{#if v}} + ({{v}}) + {{/if}} + + {{else}} + + {{ _ "not available" }} + + {{/if}} +
+ {{/each}} +
+ + + \ No newline at end of file -- cgit v1.2.3