File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 1+ {% extends "psf/default.html" %}
2+
3+ {% block page_title %}
4+ Nomination for {{ nomination.name }} in {{ nomination.election.name }} Election
5+ | {{ SITE_INFO.site_name }}
6+ {% endblock %}
7+
8+ {% block body_attributes %}class="nominations nominations_view"{% endblock %}
9+ {% block left_sidebar %}{% endblock %}
10+ {% block content_attributes %}{% endblock %}
11+
12+ {% block content %}
13+ < article class ="text ">
14+ < header class ="article-header ">
15+ < h1 class ="page-title "> Nomination for {{ nomination.name }} in {{ nomination.election.name }} Election</ h1 >
16+ </ header >
17+ < div >
18+ < ul >
19+ < li > < b > Name</ b > : {{ nomination.name }}</ li >
20+ < li > < b > Employer</ b > : {{ nomination.employer }}</ li >
21+ < li > < b > Other Affiliations</ b > : {{ nomination.other_affiliations }}</ li >
22+ < li > < b > Previous Board Service</ b > : {{ nomination.previous_board_service }}</ li >
23+ < li > < b > Nominated By</ b > : {{ nomination.nominator.first_name }} {{ nomination.nominator.last_name }}</ li >
24+ {% if nomination.nominee.user == request.user %}
25+ < li > < b > Accepted:</ b > {{ nomination.accepted }}</ li >
26+ {% endif %}
27+ </ ul >
28+ </ div >
29+ < div >
30+ < h2 > < b > Nomination Statement</ b > </ h2 >
31+ {{ nomination.nomination_statement.rendered|safe }}
32+ </ div >
33+ < div >
34+ < form method ="post "> {% csrf_token %}
35+ {{ form.as_p }}
36+ < input type ="submit " value ="Update ">
37+ </ form >
38+ </ div >
39+ </ article >
40+ {% endblock content %}
You can’t perform that action at this time.
0 commit comments