Commit 775c701de9898f315925402521251ccd4732cfcd

Authored by Adhidarma Hadiwinoto
1 parent a5d629ad4e
Exists in master

Rename invalid extension

Showing 2 changed files with 22 additions and 22 deletions Inline Diff

lib/modem-dashboard/views/runtime.html
File was created 1 {% extends "template.html" %}
2
3 {% block content %}
4
5 <div class="panel panel-default">
6 <div class="panel-body">
7 Umur proses: {{ uptime }} detik.
8 </div>
9 </div>
10
11 {% if matrix %}
12 <h2 id="matrix">The Matrix</h2>
13 <pre>{{ matrix }}</pre>
14 {% endif %}
15
16 <h2 id="memory_usage">Pemakaian Memori</h2>
17 <pre>{{ memory_usage }}</pre>
18
19 <h2 id="os_info">Sistem Operasi</h2>
20 <pre>{{ os_info }}</pre>
21
22 {% endblock %}
23
lib/modem-dashboard/views/runtime.js
1 {% extends "template.html" %} File was deleted
2
3 {% block content %}
4
5 <div class="panel panel-default">
6 <div class="panel-body">
7 Umur proses: {{ uptime }} detik.
8 </div>
9 </div>
10
11 {% if matrix %}
12 <h2 id="matrix">The Matrix</h2>
13 <pre>{{ matrix }}</pre>
14 {% endif %}
15
16 <h2 id="memory_usage">Pemakaian Memori</h2>
17 <pre>{{ memory_usage }}</pre>
18
19 <h2 id="os_info">Sistem Operasi</h2>
20 <pre>{{ os_info }}</pre>
21
22 {% endblock %}
23 1 {% extends "template.html" %}