app/soc/templates/soc/user/edit.html
author Sverre Rabbelier <srabbelier@gmail.com>
Wed, 28 Jan 2009 14:16:46 +0000
changeset 1034 d6a9fef4c1a4
parent 743 e6ab5b0c2fda
permissions -rw-r--r--
Make the user/edit.html template derive from soc/models/edit.html Patch by: Sverre Rabbelier

{% extends "soc/models/edit.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 form_table %}
  {% as_table form %}
  {% if entity.former_accounts %}
  <tr>
   <td class="formfieldlabel">Former Accounts:</td>
   <td>
       {% for former_account in entity.former_accounts %}
       {{ former_account }}<br />
       {% endfor %}
   </td>
   <td class="formfieldrequired">&nbsp;</td>
   <td class="formfieldhelptext">&nbsp;</td>
  </tr>
  {% endif %}
{% endblock %}