{% extends "base.html" %} {% block title %}Your Servers{% endblock %} {% block content %}
{% if flash.info is defined %} {{ flash.info.0|raw }} {% endif %} {% if user.root_admin == 1 %}
You are viewing this server listing as an admin. As such, all servers installed on the system are displayed. Any servers that you are set as the owner of are marked with a blue dot to the left of their name.
{% endif %} {% if servers[0]|length > 0 %}
Bulk Command Sender

{% if user.root_admin == 1 %}{% endif %} {% for server in servers %} {% if user.root_admin == 1 %}{% endif %} {% endfor %}
{{ l.render('string.name') }} {{ l.render('string.location') }} {{ l.render('string.node') }} Bind Address
{% if server.owner_id == user.id %}{% else %}{% endif %}{{ server.name }} {{ server.location }} {{ server.node_name }} {{ server.connection }}
{% else %}
You do not currently have any servers listed on your account.
{% endif %}
{% endblock %}