{% extends "master.html" %} {% block title %}Home{% endblock %} {%block tag %}{{tag}}{% endblock %} {% block content %}

{{username}} Sites

{{ sites | length }} site{{'s' if sites | length > 1}}
{% if sites %} {% for site in sites %} {% if not site.hosts %} {% else %} {% for host in site.hosts %} {% if not loop.first %} {% endif %} {% endfor %} {% endif %} {% endfor %}
Site name Hosts Admin Active User Active Private Bandwith Last crawled
{{ site.name }} 0
{{host.name}} {{host.admin_active}} {{host.user_active}} {{host.private}} {{host.bandwidth_int}} {{host.last_crawled}}
{% else %}
You Have 0 Sites Defined
{% endif %}
{% endblock %}