# HG changeset patch # User Sverre Rabbelier # Date 1229172574 0 # Node ID f6d9a49fa5ce4751fa1b404d947d669dfee8492f # Parent 7fe218e3d3595e068677f030ddf52f6c634d1975 Fix EOL-damage We use \n for line endings, so remove the \r from public.html Patch by: Sverre Rabbelier diff -r 7fe218e3d359 -r f6d9a49fa5ce app/soc/templates/soc/notification/public.html --- a/app/soc/templates/soc/notification/public.html Sat Dec 13 12:49:11 2008 +0000 +++ b/app/soc/templates/soc/notification/public.html Sat Dec 13 12:49:34 2008 +0000 @@ -1,40 +1,40 @@ -{% extends "soc/base.html" %} -{% comment %} -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -{% endcomment %} - -{% block page_title %} -Notification -{% endblock %} - -{% block header_title %} -Notification about: {{ entity.subject }} -{% endblock %} - -{% block body %} -From: -{% if not entity.from_user %} - Anonymous -{% else %} - {{ entity.from_user.name }} -{% endif %}
-To: {{ entity.scope.name }}
-Sent On: {{ entity.created_on }}
-Subject: {{ entity.subject }}
-Message:
-{{ entity.message }} -

- - - -{% endblock %} +{% extends "soc/base.html" %} +{% comment %} +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +{% endcomment %} + +{% block page_title %} +Notification +{% endblock %} + +{% block header_title %} +Notification about: {{ entity.subject }} +{% endblock %} + +{% block body %} +From: +{% if not entity.from_user %} + Anonymous +{% else %} + {{ entity.from_user.name }} +{% endif %}
+To: {{ entity.scope.name }}
+Sent On: {{ entity.created_on }}
+Subject: {{ entity.subject }}
+Message:
+{{ entity.message }} +

+ + + +{% endblock %}