# HG changeset patch
# User Pawel Solyga
# Date 1224763229 0
# Node ID 6488ff168b4263ed60cb72412b3a13529840fc28
# Parent 4877e9d83743596bda67e207c9a0b6d6b146543d
Fix typo in models/public.html template. Changes in Host Public Profile template (new header title and deletion of some fields).
Patch by: Pawel Solyga
Review by: to-be-reviewed
diff -r 4877e9d83743 -r 6488ff168b42 app/soc/templates/soc/host/public.html
--- a/app/soc/templates/soc/host/public.html Thu Oct 23 11:42:22 2008 +0000
+++ b/app/soc/templates/soc/host/public.html Thu Oct 23 12:00:29 2008 +0000
@@ -14,12 +14,8 @@
{% endcomment %}
{% load forms_helpers %}
-{% block page_title %}
-{{ entity.user.link_name }}
-{% endblock %}
-
{% block header_title %}
-{{ entity.user.link_name }}
+{{ page.short_name }} for {{ entity.user.nick_name }} ({{ entity.given_name }} {{ entity.surname }})
{% endblock %}
{% block body %}
@@ -28,9 +24,6 @@
{% readonly_field_as_table_row entity.fields.given_name.label entity.given_name %}
{% readonly_field_as_table_row entity.fields.surname.label entity.surname %}
{% readonly_field_as_table_row entity.fields.display_name.label entity.display_name %}
- {% readonly_field_as_table_row entity.fields.surname.label entity.surname %}
- {% readonly_field_as_table_row entity.fields.display_name.label entity.display_name %}
- {% readonly_field_as_table_row entity.fields.email.label entity.email %}
diff -r 4877e9d83743 -r 6488ff168b42 app/soc/templates/soc/models/edit.html
--- a/app/soc/templates/soc/models/edit.html Thu Oct 23 11:42:22 2008 +0000
+++ b/app/soc/templates/soc/models/edit.html Thu Oct 23 12:00:29 2008 +0000
@@ -28,7 +28,7 @@
{% block instructions %}
-Please use this form to edit the {{ entity_name }}
+Please use this form to edit the {{ entity_type }}.
{% endblock %}