home.html 404 B

1234567891011121314151617181920212223242526
  1. {% extends "base.html" %}
  2. {% load authperm %}
  3. {% load staticres %}
  4. {% block title %}
  5. 首页 - 丘丘塔台
  6. {% endblock %}
  7. {% block content %}
  8. <div class="jumbotron">
  9. <div class="container">
  10. {% if hp %}
  11. <div class="homecontent">
  12. {{mpo.html|safe}}
  13. </div>
  14. {% else %}
  15. <h1>欢迎!</h1>
  16. {% endif %}
  17. </div>
  18. </div>
  19. <ul>
  20. {% for i in dbginfo %}
  21. <li>i</li>
  22. {% endfor%}
  23. </ul>
  24. {% endblock %}