{% extends "base.html" %}

{% block styles %}
{{ super() }}
</style>
{% endblock %}

{% block page_content %}
  <div class="row">
  {% include "admin/admin_tasks.html" %}

  <div class="col-md-12">
  <div class="panel panel-info" id="domains">
  <div class="panel-heading">Domains</div>
  <div class="panel-body"><p>
  <table class="table table-hover table-striped table-condensed cf">
   <thead>
    <tr>
     <th>Owner</th>
     <th>Name</th>
     <th>Expiry Date</th>
     <th>Days Left</th>
    </tr>
    </thead>
    <tbody>
    {% for domain in domains %}
    {% if domain.enabled == False %}
    <tr class="danger">
    {% else %}
    {% if domain.warning == True %}
    <tr class="warning">
    {% else %}
    <tr>
    {% endif %}
    {% endif %}
    <td><a href="{{ url_for('admin.dashboard', user_pid=domain.user_id) }}">{{ domain.owner.email }}</a></td>
    <td><b><a href="http://{{ domain.fqdn }}">{{ domain.fqdn }}</a></b></td>
    <td>{{ domain.date_expire }}</td>
    <td>{{ domain.daysleft }}</td>
    </tr>
    {% endfor %}
    </tbody>
   </table>
  </div>
  </div>
  </div>

 </div>

  <div class="row">
  </div>
</div>

{% endblock %}