app/soc/templates/soc/notification/messages/invitation.html
author Lennard de Rijk <ljvderijk@gmail.com>
Mon, 16 Mar 2009 17:58:55 +0000
changeset 1891 563d6e544011
parent 917 fb82d4357552
permissions -rw-r--r--
Make the notifications look less bloated by not adhering to the linebreaks in the template but only to the HTML in them. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
758
59307ec93f1d Added base template for notification messages.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 756
diff changeset
     1
{% extends "soc/notification/messages/base.html" %}
756
a0c0b48563cb Changed invitation email and into a notification.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     2
{% comment %}
a0c0b48563cb Changed invitation email and into a notification.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     3
Licensed under the Apache License, Version 2.0 (the "License");
a0c0b48563cb Changed invitation email and into a notification.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     4
you may not use this file except in compliance with the License.
a0c0b48563cb Changed invitation email and into a notification.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     5
You may obtain a copy of the License at
a0c0b48563cb Changed invitation email and into a notification.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     6
a0c0b48563cb Changed invitation email and into a notification.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     7
  http://www.apache.org/licenses/LICENSE-2.0
a0c0b48563cb Changed invitation email and into a notification.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     8
a0c0b48563cb Changed invitation email and into a notification.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     9
Unless required by applicable law or agreed to in writing, software
a0c0b48563cb Changed invitation email and into a notification.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    10
distributed under the License is distributed on an "AS IS" BASIS,
a0c0b48563cb Changed invitation email and into a notification.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    11
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
a0c0b48563cb Changed invitation email and into a notification.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    12
See the License for the specific language governing permissions and
a0c0b48563cb Changed invitation email and into a notification.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    13
limitations under the License.
a0c0b48563cb Changed invitation email and into a notification.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    14
{% endcomment %}
a0c0b48563cb Changed invitation email and into a notification.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    15
{% block content %}
1891
563d6e544011 Make the notifications look less bloated by not adhering to the linebreaks in the template but only to the HTML in them.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 917
diff changeset
    16
You have been invited by {{ sender_name }} to become a {{ role_verbose }} for {{ group }}.<br />
756
a0c0b48563cb Changed invitation email and into a notification.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    17
Please click <a href="{{ invitation_url }}">here</a> to fill in the necessary information and accept the invitation.
a0c0b48563cb Changed invitation email and into a notification.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    18
{% endblock %}