From 3bf5383a7ea03c5aa263aa4d8acf8b4949547319 Mon Sep 17 00:00:00 2001 From: Vasilii Chernov Date: Thu, 25 Feb 2016 17:02:35 +0100 Subject: Move html_server to separate folder. Update html server templates. --- pywrap/templates/property_info.html | 91 ------------------------------------- 1 file changed, 91 deletions(-) delete mode 100644 pywrap/templates/property_info.html (limited to 'pywrap/templates/property_info.html') diff --git a/pywrap/templates/property_info.html b/pywrap/templates/property_info.html deleted file mode 100644 index 912d3d5..0000000 --- a/pywrap/templates/property_info.html +++ /dev/null @@ -1,91 +0,0 @@ -{% extends "base.html" %} -{% block title %}Property list{% endblock %} -{% block info %} -

List of properties in branch {{ branch }}

-{% endblock %} - -{% block content %} - - - - - - - - - {% for property in properties %} - - {% if ('childs' in property.flags) or (properties|length != 1) %} - - {% if 'description' in property %} - - - {% else %} - - {% endif %} - {% else %} - - - {% endif %} - - {% endfor %} -
NameDescription
"{{ property.name }}"{{ property.description }}{{ property.name }}" - - {% if 'description' in property %} - - - - - {% endif %} - - - - - {% if 'W' in property.mode %} - - - - - {% endif %} - - - - - - - - - - - - - - - - -
Description {{ property.description }}
Current value {{ value }}
Set value - - -
Mode -
    - {% for m in property.mode %} -
  • {{ m }}
  • - {% endfor %} -
-
Type {{ property.type }}
Unit {{ property.unit }}
Path {{ property.path }}
-
-{% endblock %} -- cgit v1.2.3