mirror of https://gitee.com/bigwinds/arangodb
ui graphs
This commit is contained in:
parent
6002682eb2
commit
df391b242b
|
@ -49,6 +49,7 @@
|
||||||
|
|
||||||
<% graphs.forEach(function(graph) {
|
<% graphs.forEach(function(graph) {
|
||||||
var graphName = graph.get("_key");
|
var graphName = graph.get("_key");
|
||||||
|
var isSmart = graph.get("isSmart");
|
||||||
%>
|
%>
|
||||||
|
|
||||||
<div class="tile tile-graph pure-u-1-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6" id="<%=graphName %>_tile">
|
<div class="tile tile-graph pure-u-1-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6" id="<%=graphName %>_tile">
|
||||||
|
@ -59,7 +60,11 @@
|
||||||
</div>
|
</div>
|
||||||
<span class="icon_arangodb_edge5 tile-icon"></span>
|
<span class="icon_arangodb_edge5 tile-icon"></span>
|
||||||
<span class="icon_arangodb_edge5 icon_arangodb_edge5-2 tile-icon"></span>
|
<span class="icon_arangodb_edge5 icon_arangodb_edge5-2 tile-icon"></span>
|
||||||
<div class="tileBadge"></div>
|
<div class="tileBadge">
|
||||||
|
<% if (isSmart === true) { %>
|
||||||
|
<span><div class="corneredBadge inProgress">Smart</div></span>
|
||||||
|
<% } %>
|
||||||
|
</div>
|
||||||
<h5 class="collectionName"><%=graphName %></h5>
|
<h5 class="collectionName"><%=graphName %></h5>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue