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/my_application.html

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 %}