Skip to content

Commit c327ff4

Browse files
committed
chore: styling
1 parent 20f264c commit c327ff4

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

django_wtf/templates/core/index.html

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,8 @@ <h3 class="text-lg font-bold">Trending Packages</h3>
3636
{% for repo in trending_apps %}
3737
<tr>
3838
<td>
39-
{% url 'core:repo-detail' full_name=repo.full_name as url %}
40-
<a class="flex justify-between hover:brightness-125"
41-
href="{{ url }}">
39+
{% url 'core:repo-detail' full_name=repo.full_name as url %}
40+
<a class="flex justify-between hover:brightness-125" href="{{ url }}">
4241
<p>{{ repo.full_name }}</p>
4342
<p>
4443
{{ repo.stars_lately }}
@@ -118,9 +117,8 @@ <h3 class="text-lg font-bold">Top Packages</h3>
118117
{% for repo in top_apps %}
119118
<tr>
120119
<td>
121-
{% url 'core:repo-detail' full_name=repo.full_name as url %}
122-
<a class="flex justify-between hover:brightness-125"
123-
href="{{ url }}">
120+
{% url 'core:repo-detail' full_name=repo.full_name as url %}
121+
<a class="flex justify-between hover:brightness-125" href="{{ url }}">
124122
<p>{{ repo.full_name }}</p>
125123
<p>
126124
{{ repo.stars }}

0 commit comments

Comments
 (0)