File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed
django_wtf/templates/core Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -9,19 +9,13 @@ <h3 class="text-lg text-white">Categories</h3>
99 {% if request|is_mobile or request|is_tablet %}
1010 {% for category in categories|slice:"6" %}
1111 < a href ="{% url 'core:category-detail' name=category.name %} "
12- class ="btn btn-primary ">
13- < span class ="font-normal uppercase "> {{ category.name }}
14- < span class ="text-sm "> ({{ category.total_repositories }})</ span >
15- </ span >
16- </ a >
12+ class ="btn btn-primary "> {{ category.name }} ({{ category.total_repositories }})</ a >
1713 {% endfor %}
1814 {% else %}
1915 {% for category in categories %}
2016 < a href ="{% url 'core:category-detail' name=category.name %} "
21- class ="btn btn-primary ">
22- < span class ="font-normal uppercase "> {{ category.name }}
23- < span class ="text-sm "> ({{ category.total_repositories }})</ span >
24- </ span >
17+ class ="btn btn-sm btn-primary ">
18+ {{ category.name }} ({{ category.total_repositories }})
2519 </ a >
2620 {% endfor %}
2721 {% endif %}
You can’t perform that action at this time.
0 commit comments