More cleanup and showing version in ds web gui

This commit is contained in:
Leonardo Murillo 2015-08-13 16:44:28 -06:00
parent 7c4813f1cf
commit b345d75e4d
2 changed files with 3 additions and 2 deletions

View file

@ -9,6 +9,7 @@
<thead> <thead>
<tr> <tr>
<th>Type</th> <th>Type</th>
<th>Version</th>
<th>UUID</th> <th>UUID</th>
<th>Pool</th> <th>Pool</th>
<th>Username</th> <th>Username</th>
@ -24,6 +25,7 @@
<% _.each(nodes, function(node, node_index){ %> <% _.each(nodes, function(node, node_index){ %>
<tr> <tr>
<td><%- node.type %></td> <td><%- node.type %></td>
<td><%- node.version %></td>
<td><a href="stats/?uuid=<%- node.uuid %>"><%- node.uuid %></a></td> <td><a href="stats/?uuid=<%- node.uuid %>"><%- node.uuid %></a></td>
<td><%- node.pool %></td> <td><%- node.pool %></td>
<td><%- node.username %></td> <td><%- node.username %></td>

View file

@ -13,7 +13,6 @@
#include "SharedUtil.h" #include "SharedUtil.h"
#include "UUID.h" #include "UUID.h"
#include <QtCore/QCoreApplication>
#include <QtCore/QDataStream> #include <QtCore/QDataStream>
#include <ApplicationVersion.h> #include <ApplicationVersion.h>