group.addxls.error.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 "addgroupurl" as theaddgroupurl %}
  18. <a class="btn btn-default {%if request.path = theaddgroupurl%} active {%endif%}" href={{ theaddgroupurl }}><span class="glyphicon glyphicon-edit"></span>新建分组</a>
  19. {% url "listgroupurl" as thelistgroupurl %}
  20. <a class="btn btn-default {%if request.path = thelistgroupurl%} active {%endif%}" href={{ thelistgroupurl }}><span class="glyphicon glyphicon-list"></span>分组列表</a>
  21. {% url "addxlsgroupurl" as theaddxlsgroupurl %}
  22. <a class="btn btn-default {%if request.path = theaddxlsgroupurl%} active {%endif%}" href={{ theaddxlsgroupurl }}><span class="glyphicon glyphicon-list"></span>批量导入</a>
  23. {% url "removegroupsurl" as theremovegroupsurl %}
  24. <a class="btn btn-default {%if request.path = theremovegroupsurl%} active {%endif%}" href={{ theremovegroupsurl }}><span class="glyphicon glyphicon-list"></span>批量删除</a>
  25. </div>
  26. </div>
  27. <hr/>
  28. <div class="container theme-showcase" role="main">
  29. <center>
  30. <h3>导入数据失败,请检查xls是否符合格式!</h3>
  31. <div class="alert alert-danger" role="alert">
  32. <strong>错误信息: </strong>{{xerror}}
  33. </div>
  34. </center>
  35. </div>
  36. {% endblock %}