2008-05-21 23:16:44 +02:00
{% extends "helpdesk/public_base.html" %}{% load i18n %}
{% block helpdesk_body %}
< h2 > {% trans "Knowledgebase" %}< / h2 >
2016-10-31 07:57:08 +01:00
< p > {% trans "We have listed a number of Knowledgebase articles for your perusal in the following categories. Please check to see if any of these articles address your problem prior to opening a support ticket." %}< / p >
2008-05-21 23:16:44 +02:00
2011-02-06 23:51:25 +01:00
{% for category in kb_categories %}
2016-09-27 19:16:28 +02:00
{% cycle 'one' 'two' 'three' as catnumperrow silent %}
2016-10-31 07:57:08 +01:00
{% if catnumperrow == 'one' %}< div class = "row" > {% endif %}
2016-09-27 19:16:28 +02:00
< div class = "col-lg-4" >
< div class = "panel panel-primary" >
< div class = "panel-heading" >
< h3 > {{ category.title }}< / h3 >
< / div >
< div class = "panel-body" >
< p > {{ category.description }}< / p >
< / div >
< div class = "panel-footer" >
2016-10-31 07:57:08 +01:00
< a href = '{{ category.get_absolute_url }}' > {% trans 'View articles' %}< i class = "fa fa-arrow-right" > < / i > < / a >
2016-09-27 19:16:28 +02:00
< / div >
< / div >
< / div >
2016-10-31 07:57:08 +01:00
{% if catnumperrow == 'three' %}< / div > {% endif %}
2008-05-21 23:16:44 +02:00
{% endfor %}
{% endblock %}