{% extends "base.html" %}
{% load i18n %}

{% block base_content %}

  {# FIXME is this the best markup to use? #}
  <dl class="sub-nav">
    <dd><a href="{{ view.create_url }}">
      {% blocktrans with verbose_name=view.verbose_name %} Adicionar {{ verbose_name }} {% endblocktrans %}
    </a></dd>
  </dl>

  <table class="table table-hover">
      <thead>
          <tr>
              <th>{% trans 'Id' %}</th>
              <th>{% trans 'Nome' %}</th>
              <th>{% trans 'Sigla' %}</th>
              <th>{% trans 'Tipo' %}</th>
          </tr>
      </thead>
      <tbody>
          {% for comissao in object_list %}
              <td>{{ comissao.id }}</td>
              <td>{{ comissao.nome }}</td>
              <td>{{ comissao.sigla }}</td>
              <td>{{ comissao.tipo }}</td>
          </tr>
          {% endfor %}
      </tbody>
  </table>

  {% if is_paginated %}
  <nav class="pagination-centered">
    <ul class="pagination">
      {% if page_obj.has_previous %}
        <li>
          <a href="?page={{ page_obj.previous_page_number }}">
            <span class="arrow">&laquo;</span>
          </a>
        </li>
      {% else %}
        <li class="arrow unavailable"><a href="">&laquo;</a></li>
      {% endif %}

      {% for page in paginator.page_range %}
        <li {% if page == page_obj.number %}class="active current"{% endif %}>
          <a href="?page={{ page }}">{{ page }}</a>
        </li>
      {% endfor %}

      {% if page_obj.has_next %}
        <li>
          <a href="?page={{ page_obj.next_page_number }}">
            <span class="arrow">&raquo;</span>
          </a>
        </li>
      {% else %}
        <li class="arrow unavailable"><a href="">&raquo;</a></li>
      {% endif %}
    </ul>
  </nav>
{% endif %}
{% endblock %}