summaryrefslogtreecommitdiffstats
path: root/askbot/templates/main_page/sidebar.html
blob: 7acbe0910f0deb1d25830fca82608f8cad7c2378 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% import "macros.html" as macros %}

{% if settings.SIDEBAR_MAIN_HEADER %}
<div class="box">
    {{ settings.SIDEBAR_MAIN_HEADER }}
</div>
{% endif %}

{% if contributors and settings.SIDEBAR_MAIN_SHOW_AVATARS %}
    {% include "widgets/contributors.html" %}
{% endif %}

{% if settings.TAG_SEARCH_INPUT_ENABLED %}
    {% include "main_page/tag_search.html" %}
{% endif %}

{% if request.user.is_authenticated() and settings.SIDEBAR_MAIN_SHOW_TAG_SELECTOR %} 
    {% include "widgets/tag_selector.html" %}
{% endif %}

{% if tags and settings.SIDEBAR_MAIN_SHOW_TAGS %}
    {% include "widgets/related_tags.html" %}
{% endif %}

{% if settings.SIDEBARE_MAIN_FOOTER %}
<div class="box">
    {{ settings.SIDEBAR_MAIN_FOOTER }}
</div>
{% endif %}