{% extends "admin_base.html" %} {% block title %}List All Nodes{% endblock %} {% block content %}

Node Locations

{% for location in locations %} {% endfor %}
Shortcode Location Total Nodes
{{ location.short }} {{ location.long }} {% if location.totalnodes == null %}0{% else %}{{ location.totalnodes }}{% endif %}

Add New Location

{% if get.error is defined and get.error != 1 %}
{% if get.error == "missing_args" %} Not all arguments were passed to the script. {% elseif get.error == "shortcode" %} The shortcode provided was invalid. {% elseif get.error == "location" %} The location provided cannot be empty. {% endif %}
{% endif %} {% if get.success is defined %}
You have successfully added a new location.
{% endif %}

Must be between 1 and 10 characters long. (a-zA-Z0-9-)

Enter a descriptive value for the location of this node.

{% endblock %} {% block javascript %} {% endblock %}