help.html 1.57 KB
Newer Older
1 2
{% extends "dashboard/base.html" %}
{% load i18n %}
3

4
{% block title-page %}{% trans "Help" %}{% endblock %}
5

6
{% block content %}
7
<div class="row">
8 9 10 11 12 13 14 15 16
  <div id="wrapper">
    <div id="sidebar-wrapper">
      <div id="help-tab-content" class="tab-content">
        <div class="tab-pane active _faq">
          {% include "info/help/faq_toc.html" %}
        </div>
        <div class="tab-pane _overview">
          {% include "info/help/overview_toc.html" %}
        </div>
17
      </div>
18
    </div>
19
  </div>
20
  <div id="page-content" class="col-lg-8">
21 22 23
    <div class="page-header">
      <h1>{% trans "Help" %} <small>{% trans "user guide in short" %}</small></h1>
    </div>
24 25 26
    <div class="content">
      <ul class="help-tabs nav nav-tabs">
        <li class="active">
27
          <a id="faq_menu" href="#faq" data-toggle="pill" data-target="._faq" class="text-center" >
28 29 30 31
            <i class="fa fa-comments-o fa-2x"></i>
            <br>
            {% trans "FAQ" %}
          </a>
32 33
        </li>
        <li>
34
          <a id="overview_menu" href="#overview" data-toggle="pill" data-target="._overview" class="text-center" >
35 36 37 38 39
            <i class="fa fa-book fa-2x"></i><br>
            {% trans "Overview" %}</a>
        </li>
      </ul>
      <div id="help-tab-content" class="tab-content">
40 41 42 43 44 45
        <div class="tab-pane active _faq">
          {% include "info/help/faq.html" %}
        </div>
        <div class="tab-pane _overview">
          {% include "info/help/overview.html" %}
        </div>
46
      </div>
47 48
    </div> <!-- .content -->
  </div> <!-- #page-content .col-lg-8 -->
49
</div>
50
{% endblock %}