Skip to content

Commit

Permalink
[Fixes #1648] Actual end date is now correct on report page
Browse files Browse the repository at this point in the history
  • Loading branch information
kardan committed Jul 10, 2015
1 parent 4b665cc commit f12ec4d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions akvo/templates/project_report.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ <h4>{% trans "Activity Dates" %}</h4>
</tr>
<tr>
<th scope="row">{% trans "Actual End Date" %}</th>
<td>{{project.date_end_planned|default_if_none:""}}</td>
<td>{{project.date_end_actual|default_if_none:""}}</td>
</tr>
</tbody>
</table>
Expand Down Expand Up @@ -308,7 +308,7 @@ <h4>{% trans "Product Budget Items" %}</h4>
</tbody>
</table>
{% endif %}

{% if project.planned_disbursements.all %}
<h4>{% trans "Planned Disbursements" %}</h4>
<table class="table table-striped table-bordered table-responsive">
Expand Down Expand Up @@ -336,7 +336,7 @@ <h4>{% trans "Planned Disbursements" %}</h4>
</tbody>
</table>
{% endif %}

{% if project.transactions.all %}
<h4>{% trans "Transactions" %}</h4>
<table class="table table-striped table-bordered table-responsive">
Expand Down Expand Up @@ -403,7 +403,7 @@ <h4>{% trans "Activity Documents" %}</h4>
</tbody>
</table>
{% endif %}

{% if project.conditions.all %}
<h4>{% trans "Conditions" %}</h4>
<table class="table table-striped table-bordered table-responsive">
Expand Down Expand Up @@ -448,7 +448,7 @@ <h4>{% trans "Results" %}</h4>
</tbody>
</table>
{% endif%}

{% if project.has_indicators %}
<h4>{% trans "Indicators" %}</h4>
<table class="table table-striped table-bordered table-responsive">
Expand Down Expand Up @@ -516,7 +516,7 @@ <h4>{% trans "Reporting Organisation" %}</h4>
</tbody>
</table>
{% endwith %}

<h4>{% trans "Participating Organisations" %}</h4>
{% for partner, info in project.partners_info.items %}
<table class="table table-striped table-bordered table-responsive participatingOrganisations">
Expand Down Expand Up @@ -550,7 +550,7 @@ <h4>{% trans "Participating Organisations" %}</h4>
</tbody>
</table>
{% endfor %}

{% if project.contacts.all %}
<h4>{% trans "Contact Details" %}</h4>
{% for contact in project.contacts.all %}
Expand Down Expand Up @@ -592,7 +592,7 @@ <h4>{% trans "Contact Details" %}</h4>
</table>
{% endfor %}
{% endif %}

{% if project.project_scope or project.collaboration_type or project.default_flow_type or project.default_finance_type or project.default_tied_status or project.default_aid_type %}
<h4>{% trans "Additional Details" %}</h4>
<table class="table table-striped table-bordered table-responsive">
Expand Down

0 comments on commit f12ec4d

Please sign in to comment.