summaryrefslogtreecommitdiffstats
path: root/pywrap/templates/base.html
blob: e62dbdfce842473be80dd5779e00c2006942ec40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!doctype html>
<title>{% block title %}Device {{ device }}{% endblock %}</title>
{% block info %}
   <h1>Device {{ device }} model={{ model }} control page </h1>
{% endblock %}

{% block content %}
{% endblock %}

<ul>
   <li><a href="{{ url_for('get_registers_list') }}">Registers list</li>
   <li><a href="{{ url_for('get_property_list') }}">Property info</li>
   <li><a href="{{ url_for('greet') }}">Main page</li>
</ul>