app/soc/templates/soc/user/lookup.html
author Sverre Rabbelier <srabbelier@gmail.com>
Sun, 22 Feb 2009 10:55:24 +0000
changeset 1457 9fd31955cc49
parent 546 850d9a5ad894
permissions -rw-r--r--
Make use of site_name where possible Patch by: Sverre Rabbelier

{% 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 body %}
<p>
<p>
{% block instructions %}
Please use this form to look up an existing User in {{ site_name }}.
{% endblock %}
</p>
<form method="POST">
 <table>
{% if found_user %}
{% readonly_field_as_table_row "Account" found_user.account %}
{% endif %}
{% if email_error %}
<tr>
 <td>&nbsp;</td>
 <td colspan="3" class="formfielderror">
  {{ email_error }}
 </td>
</tr>
{% endif %}
  {% field_as_table_row form.account %}
{% if link_id_error %}
<tr>
 <td>&nbsp;</td>
 <td colspan="3" class="formfielderror">
  {{ link_id_error }}
 </td>
</tr>
{% endif %}
  {% field_as_table_row form.link_id %}
{% if found_user %}
 <tr>
  <td class="formfieldlabel">Public name</td>
  <td>{{ found_user.name }}</td>
  <td class="formfieldrequired">&nbsp;</td>
  <td class="formfieldhelptext">&nbsp;</td>
 </tr>
 <tr>
  <td class="formfieldlabel">Is Developer</td>
  <td>{{ found_user.is_developer }}</td>
  <td class="formfieldrequired">&nbsp;</td>
  <td class="formfieldhelptext">&nbsp;</td>
 </tr>
 
 {% if found_user.former_accounts %}
 <tr>
  <td class="formfieldlabel">Former Accounts</td>
  <td>
      {% for former_account in found_user.former_accounts %}
      {{ former_account }}<br />
      {% endfor %}
  </td>
  <td class="formfieldrequired">&nbsp;</td>
  <td class="formfieldhelptext">&nbsp;</td>
 </tr>
 {% endif %}
{% endif %}
  <tr>
   <td colspan="4">&nbsp;</td>
  </tr>
  <tr>
   <td> 
    <input type="submit" style="font-weight: bold" name="lookup" value="Look up User"/></span>
   </td>
   <td colspan="2">&nbsp;</td>
   <td>
    {% if lookup_message %}<b><i>{{ lookup_message }}</i></b>{% else %}&nbsp;{% endif %}
   </td>
  </tr>
{% if edit_link %}
  <tr>
   <td colspan="4">&nbsp;</td>
  </tr>
  <tr>
   <td colspan="4">
    <a href="{{ edit_link }}">Edit the User profile of {{ found_user.name }}.</a>
   </td>
  </tr>
{% endif %}
{% if lookup_link %}
  <tr>
   <td colspan="4">&nbsp;</td>
  </tr>
  <tr>
   <td colspan="4">
    <a href="{{ lookup_link }}">The specified User was not found, but similar
     Users are listed here.</a>
   </td>
  </tr>
{% endif %} 
 </table>
</form>
</p>
{% endblock %}