{% extends "admin_tools/dashboard/module.html" %} {% block module_content %} {% if node_states %}

Current status of your nodes:

{% for state in nodes_states %} {% endfor %} {% for group, nodes in user_nodes.items %} {% for count in nodes %} {% endfor %} {% endfor %}
Group{{ state }}
{{ group }} {{ count }}
{% endif %} {% if slices %}

List of your slices:

    {% for slc in slices|slice:":3" %}
  1. {{ slc }}
  2. {% endfor %} {% if slices|length > 3 %}
  3. ...
  4. {% endif %}
{% endif %} {% endblock %}