This repository has been archived on 2023-02-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-bfct/blender-bfct/application/templates/applications/index.html

43 lines
1.4 KiB
HTML
Executable File

{% extends 'layout.html' %}
{% block body %}
<div class="row">
<div class="col-md-12">
<table class="table">
<thead>
<tr>
<th>Applicant</th>
<th>Country</th>
<th>Date</th>
<th>Status</th>
<th class="content-align-center">Approvals</th>
</tr>
</thead>
<tbody>
{% for application in applications %}
<tr>
<td class="relative">
<a href="{{url_for('applications.view', id=application.id)}}" >
<div class="application_row"></div>
</a>
{{application.user.first_name}} {{application.user.last_name}}
</td>
<td>{{application.city_country}}</td>
<td>{{application.pretty_submission_date}}</td>
<td>{{application.status}}</td>
<td class="content-align-center">
<span class="success">{{application.approve}}</span>
/
<span class="danger">{{application.approve + application.reject}}</span>
</td>
</tr>
<div class="clearfix"></div>
{% endfor %}
</tbody>
</table>
</div>
</div>
{% endblock %}