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>
9
9
{% if request|is_mobile or request|is_tablet %}
10
10
{% for category in categories|slice:"6" %}
11
11
< 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 >
17
13
{% endfor %}
18
14
{% else %}
19
15
{% for category in categories %}
20
16
< 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 }})
25
19
</ a >
26
20
{% endfor %}
27
21
{% endif %}
You can’t perform that action at this time.
0 commit comments