diff options
Diffstat (limited to 'templates/registration')
-rw-r--r-- | templates/registration/registration_closed.html | 10 | ||||
-rw-r--r-- | templates/registration/registration_form.html | 5 |
2 files changed, 13 insertions, 2 deletions
diff --git a/templates/registration/registration_closed.html b/templates/registration/registration_closed.html index 3501f3e..7368c71 100644 --- a/templates/registration/registration_closed.html +++ b/templates/registration/registration_closed.html @@ -5,7 +5,15 @@ {# registration closed #} {% block title %} -已关闭注册 | 2014 SKA Summer School +注册已关闭 | 2014 SKA Summer School +{% endblock %} + +{% block content %} + <div class="container"> + <h2>注册已关闭</h2> + <p class="lead">很抱歉,暑期学校注册已经关闭。</p> + <p>如果您有需要,请与我们联系:<a href="mailto:skaschool2014@163.com"><code>skaschool2014@163.com</code></a></p> + </div> {% endblock %} {# vim: set ts=8 sw=2 tw=0 fenc=utf-8 ft=htmldjango.html: #} diff --git a/templates/registration/registration_form.html b/templates/registration/registration_form.html index 90144ec..9404d68 100644 --- a/templates/registration/registration_form.html +++ b/templates/registration/registration_form.html @@ -11,10 +11,13 @@ {% block content %} <div class="container"> + <h2>注册账户</h2> + <br /> + <form role="form" class="form-horizontal" method="post"> {% csrf_token %} {% bootstrap_form form layout='horizontal' %} - {% buttons submit='OK' reset='Cancel' layout='horizontal' %}{% endbuttons %} + {% buttons submit='提交' reset='取消' layout='horizontal' %}{% endbuttons %} </form> </div> {% endblock %} |