app/soc/templates/soc/user/profile/public.html
author Sverre Rabbelier <srabbelier@gmail.com>
Sun, 12 Oct 2008 00:08:54 +0000
changeset 298 c76a366c7ab4
parent 255 663edd9f7e66
permissions -rw-r--r--
Replace almost all occurences of linkname with link_name In an attempt to have some atomicness in these commits this patch does a rename for the sake of consistency. Not all were changed, but the next commit will address that. Patch by: Sverre Rabbelier Reviewed by: to-be-reviewed

{% 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 %}
{% load forms_helpers %}
{% block page_title %}User Public Profile{% endblock %}
{% block header_title %}
User Public Profile for {{ link_name_user.nick_name }}
{% endblock %}
{% block body %}
<p>
 <table>
  {% readonly_field_as_table_row link_name_user.fields.nick_name.label link_name_user.nick_name %}
  {% readonly_field_as_table_row link_name_user.fields.link_name.label link_name_user.link_name %}
 </table>
</p>
{% endblock %}