Commit 40ae32c2 by Oláh István Gergely

dashboard: replace node in node box

parent 767aa0b1
......@@ -15,11 +15,15 @@
</div >
<div class="list-group" id="node-list-view">
<div id="dashboard-node-list">
{% for i in nodes %}
<a href="{% url "dashboard.views.node-detail" pk=i.pk %}" class="list-group-item">
<i class="icon-{% if i.enabled == True %}play-sign{% else %}pause{% endif %}"></i> {{ i.name }}
{% for i in nodes %}
<a href="{{ i.get_absolute_url }}" class="list-group-item">
<span class="index-node-list-name">
<i class="{{ i.get_status_icon }}" title="{{ i.get_status_display }}"></i>
{{ i.name }}
</span>
<div style="clear: both;"></div>
</a>
{% endfor %}
{% endfor %}
</div>
<div href="#" class="list-group-item list-group-footer">
<div class="row">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment