diff options
author | Weitian LI <liweitianux@gmail.com> | 2014-04-27 02:00:01 +0800 |
---|---|---|
committer | Weitian LI <liweitianux@gmail.com> | 2014-04-27 02:00:01 +0800 |
commit | 9172b7f08a7dabde275253b47ad051600decbe7b (patch) | |
tree | 8a001b773cebb23821550d619170a28575f200fa /account/templates/account/profile_update.html | |
parent | c4d4764da9eb15322ab4207b5efd5f3dac36d75f (diff) | |
download | django-skaschool-9172b7f08a7dabde275253b47ad051600decbe7b.tar.bz2 |
* updated 'profile_update' template:
o account_profile_update.css account_profile_update.js
o added fields 'reason', 'transcript', 'supplement'
o supported upload files (optional, dynamical formset)
* updated urls.py of 'password_reset' view
Diffstat (limited to 'account/templates/account/profile_update.html')
-rw-r--r-- | account/templates/account/profile_update.html | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/account/templates/account/profile_update.html b/account/templates/account/profile_update.html index 1802bb0..2023aa9 100644 --- a/account/templates/account/profile_update.html +++ b/account/templates/account/profile_update.html @@ -1,6 +1,7 @@ {% extends 'base.html' %} {% load staticfiles %} {% load url from future %} +{% load i18n %} {% load bootstrap3 %} {# login template #} @@ -9,16 +10,45 @@ 更新个人信息 | 2014 SKA Summer School {% endblock %} +{% block css_extra %} + <link href="{% static 'css/account_profile_update.css' %}" rel="stylesheet"> +{% endblock %} + {% block content %} <div class="container"> <h2>更新个人信息</h2> <br> - <form role="form" class="form-horizontal" method="post"> + <form role="form" class="form-horizontal" method="post" enctype="multipart/form-data"> {% csrf_token %} + <div class="mainform"> {% bootstrap_form form layout='horizontal' %} + </div> + <hr> + <div class="row add-attachments"> + <!--<p><strong>上传附件(可选)</strong> --> + <div class="col-md-2"> + <p class="text-right"><strong>上传附件(可选)</strong></p> + </div> + <div class="col-md-4"> + <p><a id="add-subform" class="btn btn-info" role="button" href="javascript:void(0)">{% trans 'Add another attachment' %}</a></p> + </div> + </div> + <hr> + {# bootstrap_formset formset layout='horizontal' #} + {{ formset.management_form }} + {% for form in formset.forms %} + <div class="subform"> + {% bootstrap_form form layout='horizontal' %} + <hr> + </div> + {% endfor %} {% buttons submit='提交' reset='重置' layout='horizontal' %}{% endbuttons %} </form> </div> {% endblock %} +{% block js_extra %} + <script src="{% static 'js/account_profile_update.js' %}" type="text/javascript"></script> +{% endblock %} + {# vim: set ts=8 sw=2 tw=0 fenc=utf-8 ft=htmldjango.html: #} |