user.remove.error.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {% extends "base.html" %}
  2. {% block title %}
  3. 删除失败
  4. {% endblock %}
  5. {% block content %}
  6. <div class="section section-breadcrumbs section-breadcrumbs-backend">
  7. <div class="container">
  8. <div class="row">
  9. <div class="col-md-12">
  10. <h1>删除失败</h1>
  11. </div>
  12. </div>
  13. </div>
  14. </div>
  15. <div class="btn-toolbar">
  16. <div class="btn-group">
  17. {% url "listuserurl" as thelistuserurl %}
  18. <a class="btn btn-default {%if request.path = thelistuserurl%} active {%endif%}" href={{ thelistuserurl }}><span class="glyphicon glyphicon-list"></span>用户列表</a>
  19. {% url "removesusersurl" as theremovesusersurl %}
  20. <a class="btn btn-default {%if request.path = theremovesusersurl%} active {%endif%}" href={{ theremovesusersurl }}><span class="glyphicon glyphicon-list"></span>批量删除</a>
  21. </div>
  22. </div>
  23. <hr/>
  24. <div class="container theme-showcase" role="main">
  25. <center>
  26. <h3>批量删除用户错误!</h3>
  27. <div class="alert alert-danger" role="alert">
  28. <strong>错误信息: </strong>{{xerror}}
  29. </div>
  30. </center>
  31. </div>
  32. {% endblock %}