You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
363 B

4 years ago
  1. {% extends 'user/settings/base.html' %}
  2. {% from 'bootstrap/form.html' import render_form %}
  3. {% block title %}隐私设置{% endblock %}
  4. {% block setting_content %}
  5. <div class="card w-100 bg-light">
  6. <h3 class="card-header">编辑隐私</h3>
  7. <div class="card-body">
  8. {{ render_form(form) }}
  9. </div>
  10. </div>
  11. {% endblock %}