Fix EOL-damage
authorSverre Rabbelier <srabbelier@gmail.com>
Sat, 13 Dec 2008 12:49:34 +0000
changeset 730 f6d9a49fa5ce
parent 729 7fe218e3d359
child 731 3e1aafcf2671
Fix EOL-damage We use \n for line endings, so remove the \r from public.html Patch by: Sverre Rabbelier
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 %} <br />
-To: {{ entity.scope.name }} <br />
-Sent On: {{ entity.created_on }} <br />
-Subject: {{ entity.subject }} <br />
-Message: <br/> 
-{{ entity.message }} 
-<p />
-
-<input type="button" onclick="location.href='/{{ entity_type_url|lower }}/delete/{{ entity_suffix }}'" value="Delete"/>
-
-{% 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 %} <br />
+To: {{ entity.scope.name }} <br />
+Sent On: {{ entity.created_on }} <br />
+Subject: {{ entity.subject }} <br />
+Message: <br/>
+{{ entity.message }}
+<p />
+
+<input type="button" onclick="location.href='/{{ entity_type_url|lower }}/delete/{{ entity_suffix }}'" value="Delete"/>
+
+{% endblock %}