equal
deleted
inserted
replaced
1 {% extends "soc/base.html" %} |
|
2 {% comment %} |
|
3 Licensed under the Apache License, Version 2.0 (the "License"); |
|
4 you may not use this file except in compliance with the License. |
|
5 You may obtain a copy of the License at |
|
6 |
|
7 http://www.apache.org/licenses/LICENSE-2.0 |
|
8 |
|
9 Unless required by applicable law or agreed to in writing, software |
|
10 distributed under the License is distributed on an "AS IS" BASIS, |
|
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
12 See the License for the specific language governing permissions and |
|
13 limitations under the License. |
|
14 {% endcomment %} |
|
15 {% load forms_helpers %} |
|
16 {% block page_title %}User Profile{% endblock %} |
|
17 {% block header_title %}User Profile{% endblock %} |
|
18 {% block body %} |
|
19 <p> |
|
20 <p> |
|
21 {% block instructions %} |
|
22 Please use this form to set basic site-wide settings for your participation in Google Open Source Programs. |
|
23 {% endblock %} |
|
24 </p> |
|
25 <form method="POST"> |
|
26 <table> |
|
27 {% field_as_table_row form.nick_name %} |
|
28 {% field_as_table_row form.link_name %} |
|
29 </table> |
|
30 <div class="buttons"> |
|
31 <input style="font-weight: bold" type="submit" value="Save Changes"/></span> |
|
32 <input type="button" onclick="location.href='/'" value="Cancel"/> |
|
33 </div> |
|
34 </form> |
|
35 </p> |
|
36 {% endblock %} |
|