]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/users/edit.html
Besides making an option to make usernames to be editable, is also good that users...
[osqa.git] / forum / skins / default / templates / users / edit.html
1 {% extends "base_content.html" %}\r
2 <!-- user_edit.html -->\r
3 {% load extra_tags %}\r
4 {% load humanize %}\r
5 {% load i18n %}\r
6 {% block title %}{% spaceless %}{% trans "Edit user profile" %}{% endspaceless %}{% endblock %}\r
7 {% block forejs %}\r
8         <script type="text/javascript">google.load("jquery", "1.4.2");google.load("jqueryui", "1.8.1");</script>\r
9 \r
10         <link rel="stylesheet" href="http://jquery-ui.googlecode.com/svn/tags/latest/themes/base/jquery-ui.css" type="text/css" media="all" />\r
11         <link rel="stylesheet" href="http://static.jquery.com/ui/css/demo-docs-theme/ui.theme.css" type="text/css" media="all" />\r
12 \r
13         <script type="text/javascript">\r
14             $().ready(function(){\r
15                 $("#id_birthday").datepicker({\r
16                     changeMonth: true,\r
17                     changeYear: true,\r
18                     dateFormat: 'yy-mm-dd',\r
19                     minDate: null,\r
20                     maxDate: '0M 0D',\r
21                     yearRange: '1920:2010'\r
22                 });\r
23 \r
24                 $("#nav_profile").attr('className',"on");\r
25                 $("#cancel").bind('click', function(){history.go(-1);})\r
26             });     \r
27         </script>\r
28         {% block userjs %}\r
29         {% endblock %}\r
30 {% endblock %}\r
31 {% block content %}\r
32 <div id="main-bar" class="headNormal">\r
33     {{ request.user.username }} - {% trans "edit profile" %}\r
34 </div>\r
35 <div id="main-body" style="width:100%;padding-top:10px">\r
36     <form name="" action="{% url edit_user request.user.id %}" method="post">\r
37         <div id="left" style="float:left;width:180px">\r
38             {% if request.user.email %}\r
39             {% gravatar request.user 128 %}\r
40             {% else %}\r
41             <img src="{% media  "/media/images/nophoto.png" %}">\r
42             {% endif %}\r
43             <div style="padding:20px 0 0 20px;font-weight:bold;font-size:150%">\r
44                 <a href="http://www.gravatar.com/" target="_blank" \r
45                                         title="gravatar {% trans "image associated with your email address" %}">{% blocktrans %}avatar, see {{gravatar_faq_url}}{% endblocktrans %}</a>\r
46             </div>\r
47         </div>\r
48         \r
49         <div id="askform" style="float:right;width:750px;text-align:left;">\r
50             <h2>{% trans "Registered user" %}</h2>\r
51             <table class="user-details">\r
52                 <tr>\r
53                     <th width="100px"></th>\r
54                     <th></th>\r
55                 </tr>\r
56                 <tr style="height:35px">\r
57                         <td>{% trans "Screen Name" %}:</td>\r
58                         <td>\r
59                         {% if form.username %}\r
60                             {{ form.username }} <span class="form-error"></span> {{ form.username.errors }}\r
61                         {% else %}\r
62                             {{ request.user.username }}\r
63                         {% endif %}\r
64                         </td>\r
65                     </tr>\r
66                 \r
67                     <tr style="height:35px">\r
68                         <td>{{ form.email.label_tag }}:</td>\r
69                         <td>{{ form.email }} <span class="form-error"></span> {{ form.email.errors }} </td>\r
70                     </tr>\r
71                 <tr style="height:35px">\r
72                         <td></td>\r
73                         <td class="title-desc">{{ form.email.help_text }}</td>\r
74                     </tr>\r
75                 <tr style="height:35px">\r
76                         <td>{{ form.realname.label_tag }}:</td>\r
77                         <td>{{ form.realname }} <span class="form-error"></span> {{ form.realname.errors }} </td>\r
78                     </tr>\r
79                 <tr style="height:35px">\r
80                         <td>{{ form.website.label_tag }}:</td>\r
81                         <td>{{ form.website }} <span class="form-error"></span> {{ form.website.errors }} </td>\r
82                     </tr>\r
83                 <tr style="height:35px">\r
84                         <td>{{ form.city.label_tag }}:</td>\r
85                         <td>{{ form.city }} <span class="form-error"></span> {{ form.city.errors }} </td>\r
86                     </tr>\r
87                 <tr style="height:35px">\r
88                         <td>{{ form.birthday.label_tag }}:</td>\r
89                         <td>{{ form.birthday }} <span class="form-error"></span> {{ form.birthday.errors }} </td>\r
90                     </tr>\r
91                 <tr>\r
92                         <td style="vertical-align:top">{{ form.about.label_tag }}:</td>\r
93                         <td>{{ form.about }} <span class="form-error"></span> {{ form.about.errors }} </td>\r
94                     </tr>\r
95                     \r
96             </table>\r
97             <div style="margin:30px 0 60px 0">\r
98                 <input type="submit" value="{% trans "Update" %}" class="submit" >\r
99                 <input id="cancel" type="button" value="{% trans "Cancel" %}" class="submit" >\r
100           \r
101             </div>\r
102         </div>\r
103     </form>\r
104     \r
105 </div>\r
106 {% endblock %}\r
107 <!-- end user_edit.html -->\r