summaryrefslogtreecommitdiffstats
path: root/askbot/templates/main_page/sidebar.html
blob: 610d2b605471f2d632573074dcca87b42886081c (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 'SIDEBAR_MAIN_HEADER'|show_block_to(request.user) %}
<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 'SIDEBAR_MAIN_FOOTER'|show_block_to(request.user) %}
<div class="box">
    {{ settings.SIDEBAR_MAIN_FOOTER }}
</div>
{% endif %}