Skip to content

Commit 16d07ab

Browse files
committed
add scholarship page
1 parent 7509cfd commit 16d07ab

File tree

4 files changed

+25
-0
lines changed

4 files changed

+25
-0
lines changed

gps.py

+7
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,12 @@ def get(self):
8282
template = JINJA_ENVIRONMENT.get_template('student/accommodation.html')
8383
self.response.out.write(template.render(vars))
8484

85+
class ScholarshipPage(webapp2.RequestHandler):
86+
def get(self):
87+
vars = {'page': 'home'}
88+
template = JINJA_ENVIRONMENT.get_template('student/scholarship.html')
89+
self.response.out.write(template.render(vars))
90+
8591
class AboutPage(webapp2.RequestHandler):
8692
def get(self):
8793
vars = {'page': 'about'}
@@ -172,6 +178,7 @@ def get(self):
172178
('/schedule', SchedulePage),
173179
('/safety', SafetyPage),
174180
('/accommodation', AccommodationPage),
181+
('/scholarship', ScholarshipPage),
175182
('/visa', VisaPage),
176183
('/about', AboutPage),
177184
('/contact', ContactPage),

gps.pyc

467 Bytes
Binary file not shown.

student/rightpanel.html

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<li><a href="costs">Costs</a></li>
77
<li><a href="safety">Safety</a></li>
88
<li><a href="accommodation">Accommodation</a></li>
9+
<li><a href="scholarship">Scholarship</a></li>
910
<li><a href="visa">Visas</a></li>
1011
</ul>
1112
</nav>

student/scholarship.html

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{% extends "student/base.html" %}
2+
3+
{% block content %}
4+
<div class="summary">
5+
<h2 class="title">Scholarship</h2>
6+
<h4>We offer scholarships of up to £500 per student. They are offered to students who demonstrate the skills and character to be a Global Paths Ambassador.<br></h4>
7+
8+
<h3><strong>What is a Global Paths Ambassador?</strong></h3>
9+
<h4>A Global Paths Ambassador is a student who has attended Global Paths and informs other students about the programme through social media, presentations, posters, competitions, discussion and lots more!
10+
</h4>
11+
12+
<h3><strong>How can I apply for a scholarship?</strong></h3>
13+
<h4>If you are interested in a scholarship, submit a short essay outlining why you would be a good ambassador for Global Paths and what ideas you would implement to promote Global Paths once you complete the programme. Think of new, creative ways to inform other like minded students about the programme. Submit your essay in an email to [email protected] along with your online sign up form.
14+
</h4>
15+
</div>
16+
17+
{% endblock %}

0 commit comments

Comments
 (0)