layout.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {% extends "admin/base.html" %}
  2. {% from "admin/macros.html" import messages_list %}
  3. {% block body %}
  4. <div id="page-top" class="navbar navbar-static-top navbar-sections">
  5. <div class="navbar-inner">
  6. <div class="container">
  7. <a class="brand" href="{{ url(admin_index) }}">Misago <span>{{ version }}</span></a>
  8. <ul class="nav">{% for section in sections %}
  9. <li{% if section.is_active and not exception_response %} class="active"{% endif %}><a href="{{ url(section.link) }}"><i class="icon-{{ section.icon }}"></i> {{ section.name }}</a></li>{% endfor %}
  10. </ul>
  11. <form class="navbar-form user-signout pull-right" action="{{ url('admin_sign_out') }}" method="post"><input type="hidden" name="{{ csrf_id }}" value="{{ csrf_token }}"><button type="submit" class="btn btn-link"><i class="icon-off"></i> {% trans %}Sign Out{% endtrans %}</button></form>
  12. <ul class="nav pull-right">
  13. <li><a href="{{ url('index') }}"><i class="icon-home"></i> {% trans %}Forums Index{% endtrans %}</a></li>
  14. </ul>
  15. <div class="user-profile pull-right">
  16. <img src="{{ user.get_avatar(28) }}" class="avatar-small" alt=""> {{ user.username }}
  17. </div>
  18. </div>
  19. </div>
  20. </div>{% if not exception_response%}
  21. <div class="navbar navbar-static-top navbar-inverse navbar-actions">
  22. <div class="navbar-inner">
  23. <div class="container">
  24. <ul class="nav">{% for action in actions %}
  25. <li{% if action.is_active %} class="active"{% elif action.help %} class="tooltip-bottom" title="{{ action.help }}"{% endif %}><a href="{{ url(action.link) }}"><i class="icon-{{ action.icon }}"></i> {{ action.name }}</a></li>{% endfor %}
  26. </ul>
  27. </div>
  28. </div>
  29. </div>{% endif %}
  30. <div class="container body-container">
  31. {% if messages %}
  32. <div class="alerts-global">
  33. {{ messages_list(messages) }}
  34. </div>{% endif %}
  35. {% block content %}
  36. {% endblock %}
  37. <footer>
  38. Powered by <a href="http://misago-project.org">Misago forum software</a> by Rafał Pitoń
  39. <a href="#page-top" class="go-to-top"><i class="icon-arrow-up"></i>{% trans %}Go to Top{% endtrans %}</a>
  40. </footer>
  41. </div>
  42. {% endblock %}