| author | Lennard de Rijk <ljvderijk@gmail.com> |
| Tue, 14 Jul 2009 17:29:53 +0200 | |
| changeset 2645 | a7e263a86209 |
| parent 2602 | 1179eb77c642 |
| permissions | -rw-r--r-- |
|
2645
a7e263a86209
Made the reminder templates extend the mail base instead of notification.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
2602
diff
changeset
|
1 |
{% extends "soc/mail/base.html" %}
|
|
2595
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
2 |
{% comment %}
|
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
3 |
Licensed under the Apache License, Version 2.0 (the "License"); |
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
4 |
you may not use this file except in compliance with the License. |
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
5 |
You may obtain a copy of the License at |
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
6 |
|
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
7 |
http://www.apache.org/licenses/LICENSE-2.0 |
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
8 |
|
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
9 |
Unless required by applicable law or agreed to in writing, software |
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
10 |
distributed under the License is distributed on an "AS IS" BASIS, |
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
11 |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
12 |
See the License for the specific language governing permissions and |
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
13 |
limitations under the License. |
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
14 |
{% endcomment %}
|
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
15 |
{% block content %}
|
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
16 |
We've noticed that you have not yet completed an evaluation for your GSoC project "{{ project_title }}".
|
|
2602
1179eb77c642
Fixed typo in ProjectSurvey reminder mail.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
2595
diff
changeset
|
17 |
Please take a moment to visit {{ survey_url }} and complete the evaluation immediately.
|
|
2595
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
18 |
If you need assistance with the survey, please try asking for help on the Students Mailing list or in #gsoc on Freenode. |
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
19 |
Please note that we cannot make payment to you until this evaluation is on file, so it's imperative that we receive it by the posted deadline of {{ survey_end|date:"jS F Y H:i" }} (UTC).
|
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
20 |
{% endblock %}
|
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
21 |
|
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
22 |
{% block signature %}
|
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
23 |
Greetings, <br /> |
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
24 |
The {{ site_name }} Team
|
|
4c00831ef55c
Added Surveys Tasks module to send reminders.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
25 |
{% endblock %}
|