group.addxls.error.html.bak 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {% extends "base.html" %}
  2. {% block title %}
  3. Add User
  4. {% endblock %}
  5. {% block content %}
  6. <div class="btn-toolbar">
  7. <div class="btn-group">
  8. {% url "adduserurl" as theadduserurl %}
  9. <a class="btn btn-default {%if request.path = theadduserurl%} active {%endif%}" href={{ theadduserurl }}><span class="glyphicon glyphicon-edit"></span>新建用户</a>
  10. {% url "listuserurl" as thelistuserurl %}
  11. <a class="btn btn-default {%if request.path = thelistuserurl%} active {%endif%}" href={{ thelistuserurl }}><span class="glyphicon glyphicon-list"></span>用户列表</a>
  12. {% url "addxlsuserurl" as theaddxlsuserurl %}
  13. <a class="btn btn-default {%if request.path = theaddxlsuserurl%} active {%endif%}" href={{ theaddxlsuserurl }}><span class="glyphicon glyphicon-list"></span>批量导入</a>
  14. {% url "removegroupsurl" as theremovegroupsurl %}
  15. <a class="btn btn-default {%if request.path = theremovegroupsurl%} active {%endif%}" href={{ theremovegroupsurl }}><span class="glyphicon glyphicon-list"></span>批量删除</a>
  16. </div>
  17. </div>
  18. <hr/>
  19. <div class="container theme-showcase" role="main">
  20. <center>
  21. <h3>导入数据失败,请检查xls是否符合格式!</h3>
  22. <div class="alert alert-danger" role="alert">
  23. <strong>错误信息: </strong>{{xerror}}
  24. </div>
  25. </center>
  26. </div>
  27. {% endblock %}