Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / projects / projectmodification_form_summary.html @ 58e80501

History | View | Annotate | Download (1.2 kB)

1
{% extends "im/projects/projectapplication_form_summary.html" %}
2
{% load filters %}
3

    
4
{% block page.heading %}
5
REQUEST PROJECT MODIFICATION
6
{% endblock %}
7

    
8
{% block page.description %}
9
These are the modifications you want to apply to the Project. If you hit the
10
"Submit" button this form will be officially sent to {{ BRANDING_COMPANY_NAME }}
11
for review. Please make sure the following reflect exactly your modification
12
request.
13
{% endblock %}
14

    
15
{% block page.project_details %}
16
<dt>Name</dt>
17
<dd>{{ form|display_modification_param:"name" }}&nbsp;</dd>
18
<dt>Homepage Url</dt>
19
<dd>{{ form|display_modification_param:"homepage" }}&nbsp;</dd>
20
<dt>Description</dt>
21
<dd>{{ form|display_modification_param:"description" }}&nbsp;</dd>
22
<dt>End Date</dt>
23
<dd>{{ form|display_date_modification_param:"end_date,d/m/Y" }}&nbsp;</dd>
24
<dt>Comments</dt>
25
<dd>{{ form_data.comments }}&nbsp;</dd>            
26
{% endblock %}
27

    
28
{% block page.project_membership_details %}
29
<dt>Member join policy</dt>
30
<dd>{{ form|display_modification_param:"member_join_policy" }}&nbsp;</dd>
31
<dt>Member leave policy</dt>
32
<dd>{{ form|display_modification_param:"member_leave_policy" }}&nbsp;</dd>
33
<dt>Total number of members</dt>
34
<dd>{{ form|display_modification_param_diff:"limit_on_members_number" }}&nbsp;</dd>
35
{% endblock %}