diff -r 31927f21970d -r 0b479d573a4c app/soc/templates/soc/user/lookup.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/soc/templates/soc/user/lookup.html Wed Nov 05 23:38:00 2008 +0000 @@ -0,0 +1,109 @@ +{% 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 %} +

+

+{% block instructions %} +Please use this form to look up an existing User in Google Open Source Programs. +{% endblock %} +

+
+ +{% if found_user %} +{% readonly_field_as_table_row "Id" found_user.id %} +{% endif %} +{% if email_error %} + + + + +{% endif %} + {% field_as_table_row form.id %} +{% if link_name_error %} + + + + +{% endif %} + {% field_as_table_row form.link_name %} +{% if found_user %} + + + + + + + + + + + + + + {% if found_user.former_ids %} + + + + + + + {% endif %} +{% endif %} + + + + + + + + +{% if edit_link %} + + + + + + +{% endif %} +{% if lookup_link %} + + + + + + +{% endif %} +
  + {{ email_error }} +
  + {{ link_name_error }} +
Nick name{{ found_user.nick_name }}  
Is Developer{{ found_user.is_developer }}  
Former ids + {% for former_id in found_user.former_ids %} + {{ former_id }}
+ {% endfor %} +
  
 
+ +   + {% if lookup_message %}{{ lookup_message }}{% else %} {% endif %} +
 
+ Edit the User profile of {{ found_user.nick_name }}. +
 
+ The specified User was not found, but similar + Users are listed here. +
+
+

+{% endblock %}