37 lines
1.2 KiB
Plaintext
Executable File
37 lines
1.2 KiB
Plaintext
Executable File
<div id="stats">
|
|
<% foreach my $s ( @{$stats} ) { %>
|
|
<span class="stat" id="<%= $s->{'table'} %>_stat"><b><%= $s->{'formatted_table'} %>:</b> <%= $s->{'count'} %></span>
|
|
<% } %>
|
|
</div>
|
|
<% if ($c->stash('pl_time')) { %><b>PL TIME:</b> <span class="time" timestamp="<%= $c->stash('pl_time') %>"></span><% } %><br>
|
|
<b>Uptime:</b> <span class="time" timestamp="<%= $last_restart %>"></span><br><br>
|
|
|
|
|
|
<table style="width:100%;max-width:500px;">
|
|
<thead>
|
|
<th>Key</th>
|
|
<th>Value</th>
|
|
<th>Cxl</th>
|
|
</thead>
|
|
<tbody>
|
|
<% foreach my $ls ( keys %{$local_storage} ) { %>
|
|
<tr class="system_localstorage" key="<%= $ls %>">
|
|
<td><b><%= $ls %></b></td>
|
|
<td><%= $local_storage->{$ls} %></td>
|
|
<td><img class="localstorage_delete little_thumb" key="<%= $ls %>" src="/images/make believe/cancel_button.png"></td>
|
|
</tr>
|
|
<% } %>
|
|
</tbody>
|
|
</div>
|
|
|
|
|
|
<%= include 'apps/evaluation', evaluation => $evaluation, app => undef %>
|
|
|
|
Anchor <input type="checkbox" class="anchor_all_settings" setting_type="sys">
|
|
<% foreach my $dt ( @gb::device_types ) { %>
|
|
<h3><%= $dt %></h3>
|
|
|
|
<h4>Cache Folders</h4>
|
|
<textarea style="width:100%;" class="sys_setting" setting="cache_folders" device="<%= $dt %>"><%= $settings->{$dt}->{'cache_folders'} %></textarea>
|
|
|
|
<% } %> |