help.html 336 B

123456789101112
  1. {% extends "oscar/base.html" %}
  2. {% block title %}{{ page.title }} - {% endblock %}
  3. {% block content %}
  4. <ul class="nav nav-tabs">
  5. {% for name, page in all_pages %}
  6. <li {% if name == page_filename %}class="active"{% endif %}>
  7. <a href="{{name}}">{{page.title}}</a>
  8. </li>
  9. {% endfor %}
  10. </ul>
  11. {{ page.content | safe }}
  12. {% endblock %}