{{ header }}{{ column_left }}
<div id="content">
  <div class="page-header">
    <div class="container-fluid">
      <div class="pull-right"><a href="{{ add }}" data-toggle="tooltip" title="{{ button_add }}" class="btn btn-primary"><i class="fa fa-plus"></i></a>
        <!-- <button type="button" data-toggle="tooltip" title="{{ button_delete }}" class="btn btn-danger" onclick="confirm('{{ text_confirm }}') ? $('#form-user').submit() : false;"><i class="fa fa-trash-o"></i></button> -->
      </div>
      <h1>{{ heading_title }}</h1>
      <ul class="breadcrumb">
        {% for breadcrumb in breadcrumbs %}
        <li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
        {% endfor %}
      </ul>
    </div>
  </div>
  <div class="container-fluid">
    {% if error_warning %}
    <div class="alert alert-danger alert-dismissible"><i class="fa fa-exclamation-circle"></i> {{ error_warning }}
      <button type="button" class="close" data-dismiss="alert">&times;</button>
    </div>
    {% endif %}
    {% if success %}
    <div class="alert alert-success alert-dismissible"><i class="fa fa-check-circle"></i> {{ success }}
      <button type="button" class="close" data-dismiss="alert">&times;</button>
    </div>
    {% endif %}
    <div class="panel panel-default">
      <div class="panel-heading">
        <h3 class="panel-title"><i class="fa fa-list"></i> {{ text_list }}</h3>
      </div>
      <div class="panel-body">
        <form action="{{ delete }}" method="post" enctype="multipart/form-data" id="form-user">
          <div class="table-responsive">
            <table class="table table-bordered table-hover">
              <thead>
                <tr>
                  <td class="text-center">Title</td>
                  <td class="text-center">Year</td>
                  <td class="text-center">Action</td>
                </tr>
              </thead>
              <tbody>
                {% if elections %}
                {% for election in elections %}
                <tr>
                  <td class="text-center">{{ election.title }}</td>
                  <td class="text-center">{{ election.year }}</td>
                  <td class="text-center">
                  {% if usergroupid == 1 %}
                    <a href="{{ election.edit }}" data-toggle="tooltip" title="{{ button_edit }}" class="btn btn-primary"><i class="fa fa-pencil"></i></a>&nbsp<a href="{{ election.delete }}" onclick="return confirm('Are you sure you want to delete?')" data-toggle="tooltip" title="{{ button_edit }}" class="btn btn-danger"><i class="fa fa-trash"></i></a>&nbsp<a href="{{ election.voters }}" target="_blank"  data-toggle="tooltip" title="View Status" class="btn btn-success"><i class="fa fa-user"></i></a>&nbsp
                    {% if election.viewsresult == 1 %}<a href="{{ election.result }}" data-toggle="tooltip" title="Result" class="btn btn-danger"><i class="fa fa-trophy"></i></a>&nbsp<a href="" download  data-toggle="tooltip" title="Download Result" class="btn btn-success"><i class="fa fa-download"></i></a>
                    {% else %}
                    <a href="javascript:void(0);" onClick="alert('Please open this link once election is over')" data-toggle="tooltip" title="Result" class="btn btn-danger"><i class="fa fa-trophy"></i></a>&nbsp<a href="javaScript:void(0)" onClick="alert('Please open this link once election is over')"  data-toggle="tooltip" title="Download Result" class="btn btn-success"><i class="fa fa-download"></i></a>
                    {% endif %}
                  {% endif %}
                  
                  {% if usergroupid == 11 %}
                  
                  <a href="{{ election.voters }}" target="_blank"  data-toggle="tooltip" title="View Status" class="btn btn-success"><i class="fa fa-user"></i></a>&nbsp
                    {% if election.viewsresult == 1 %}
                    <a href="{{ election.result }}" data-toggle="tooltip" title="Result" class="btn btn-danger"><i class="fa fa-trophy"></i></a>&nbsp<a href="" download  data-toggle="tooltip" title="Download Result" class="btn btn-success"><i class="fa fa-download"></i></a>
                    {% else %}
                    <a href="javascript:void(0);" onClick="alert('Please open this link once election is over')" data-toggle="tooltip" title="Result" class="btn btn-danger"><i class="fa fa-trophy"></i></a>&nbsp<a href="javaScript:void(0)" onClick="alert('Please open this link once election is over')"  data-toggle="tooltip" title="Download Result" class="btn btn-success"><i class="fa fa-download"></i></a>
                    {% endif %}
                  {% endif %}
                  </td>
                </tr>
                {% endfor %}
                {% else %}
                <tr>
                  <td class="text-center" colspan="5">No results</td>
                </tr>
                {% endif %}
              </tbody>
            </table>
          </div>
        </form>
        <div class="row">
          <div class="col-sm-6 text-left">{{ pagination }}</div>
          <div class="col-sm-6 text-right">{{ results }}</div>
        </div>
      </div>
    </div>
  </div>
</div>
{{ footer }} 