summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/main_page/sidebar.html
blob: c89d62f459f3aa9eec940ac87449efe1f7889fde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% import "macros.html" as macros %}

{{ settings.SIDEBAR_MAIN_HEADER }}

{% if contributors and settings.SIDEBAR_MAIN_SHOW_AVATARS %}
   {% include "widgets/contributors.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 %}

{{ settings.SIDEBAR_MAIN_FOOTER }}