37 lines
1.0 KiB
HTML
Executable File
37 lines
1.0 KiB
HTML
Executable File
{% extends 'layout.html' %}
|
|
{% block body %}
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<h2>Your BFCT status dashboard</h2>
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Date</th>
|
|
<th>Stage</th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>{{application.show_pretty_date('submission')}}</td>
|
|
<td>You submitted your application</td>
|
|
</tr>
|
|
{% if application.review_start_date %}
|
|
<tr>
|
|
<td>{{application.show_pretty_date('review_start')}}</td>
|
|
<td>Application review started</td>
|
|
</tr>
|
|
{% endif%}
|
|
{% if application.review_end_date %}
|
|
<tr>
|
|
<td>{{application.show_pretty_date('review_end')}}</td>
|
|
<td>Application review ended</td>
|
|
</tr>
|
|
{% endif%}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|