| author | Lennard de Rijk <ljvderijk@gmail.com> |
| Fri, 24 Jul 2009 20:49:59 +0200 | |
| changeset 2675 | 49cf6a8af70a |
| permissions | -rw-r--r-- |
|
2675
49cf6a8af70a
Added template for a notification upon arrival of a new Request.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
1 |
{% extends "soc/notification/messages/base.html" %}
|
|
49cf6a8af70a
Added template for a notification upon arrival of a new Request.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
2 |
{% comment %}
|
|
49cf6a8af70a
Added template for a notification upon arrival of a new Request.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
3 |
Licensed under the Apache License, Version 2.0 (the "License"); |
|
49cf6a8af70a
Added template for a notification upon arrival of a new Request.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
4 |
you may not use this file except in compliance with the License. |
|
49cf6a8af70a
Added template for a notification upon arrival of a new Request.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
5 |
You may obtain a copy of the License at |
|
49cf6a8af70a
Added template for a notification upon arrival of a new Request.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
6 |
|
|
49cf6a8af70a
Added template for a notification upon arrival of a new Request.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
7 |
http://www.apache.org/licenses/LICENSE-2.0 |
|
49cf6a8af70a
Added template for a notification upon arrival of a new Request.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
8 |
|
|
49cf6a8af70a
Added template for a notification upon arrival of a new Request.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
9 |
Unless required by applicable law or agreed to in writing, software |
|
49cf6a8af70a
Added template for a notification upon arrival of a new Request.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
10 |
distributed under the License is distributed on an "AS IS" BASIS, |
|
49cf6a8af70a
Added template for a notification upon arrival of a new Request.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
11 |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
49cf6a8af70a
Added template for a notification upon arrival of a new Request.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
12 |
See the License for the specific language governing permissions and |
|
49cf6a8af70a
Added template for a notification upon arrival of a new Request.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
13 |
limitations under the License. |
|
49cf6a8af70a
Added template for a notification upon arrival of a new Request.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
14 |
{% endcomment %}
|
|
49cf6a8af70a
Added template for a notification upon arrival of a new Request.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
15 |
{% block content %}
|
|
49cf6a8af70a
Added template for a notification upon arrival of a new Request.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
16 |
{{ requester_name }} has requested to become a {{ entity.role_verbose }} for {{ entity.scope.name }}.<br />
|
|
49cf6a8af70a
Added template for a notification upon arrival of a new Request.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
17 |
Please click <a href="{{ request_url }}">here</a> to accept or reject this request.
|
|
49cf6a8af70a
Added template for a notification upon arrival of a new Request.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff
changeset
|
18 |
{% endblock %}
|