Skip to content

Commit 84b8d95

Browse files
authored
Merge branch 'main' into modified
2 parents 7624451 + 8309407 commit 84b8d95

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

website/templates/projects/repo_detail.html

+10-6
Original file line numberDiff line numberDiff line change
@@ -408,15 +408,19 @@ <h3 class="text-lg font-semibold text-gray-900">Commits</h3>
408408
</section>
409409
<!-- Statistics Charts -->
410410
<section class="bg-white py-6 px-4 rounded-lg shadow-lg">
411-
<h2 class="text-pink-500 font-bold text-lg">{{ repo.contributor_count|intcomma }} Contributions in the Last 30 Days</h2>
411+
<h2 class="text-pink-500 font-bold text-lg">
412+
{{ repo.contributor_count|intcomma }} Contributions in the Last 30 Days
413+
</h2>
412414
<div class="grid grid-cols-3 gap-2 mt-4">
413415
<div class="p-4 border rounded-lg">
414416
<span class="text-blue-500 text-sm flex w-full items-center justify-start">
415417
<p class="mr-2" id="open-closed-issue-ratio"></p>
416418
<p>Opened/Closed Issue Ratio</p>
417419
</span>
418420
<span class="text-xs flex justify-between items-center mt-3">
419-
<p class="text-gray-400">{{ issue_ratio_change|floatformat:2 }} ({{ issue_ratio_percentage_change|floatformat:2 }}%)</p>
421+
<p class="text-gray-400">
422+
{{ issue_ratio_change|floatformat:2 }} ({{ issue_ratio_percentage_change|floatformat:2 }}%)
423+
</p>
420424
<p class="{% if issue_ratio_change >= 0 %}text-green-500{% else %}text-red-500{% endif %} flex items-center">
421425
{% if issue_ratio_change >= 0 %}
422426
<svg class="w-4 h-4 mr-1" fill="currentColor" viewBox="0 0 20 20">
@@ -479,9 +483,9 @@ <h2 class="text-pink-500 font-bold text-lg">{{ repo.contributor_count|intcomma }
479483
<div class="flex items-center justify-start">
480484
<span class="p-2 rounded-full mr-2">
481485
<svg class="w-5 h-5 text-blue-500"
482-
fill="none"
483-
stroke="currentColor"
484-
viewBox="0 0 24 24">
486+
fill="none"
487+
stroke="currentColor"
488+
viewBox="0 0 24 24">
485489
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
486490
</svg>
487491
</span>
@@ -1255,7 +1259,7 @@ <h3 class="text-lg font-semibold text-gray-900">Pull Requests</h3>
12551259
{% endif %}
12561260
</div>
12571261
</div>
1258-
<!-- Dollar Tag Issues Section -->
1262+
<!-- Bounties Section -->
12591263
{% if dollar_tag_issues %}
12601264
<div class="mt-8 bg-white rounded-lg border border-gray-200 overflow-hidden">
12611265
<div class="bg-gray-50 px-4 py-3 border-b border-gray-200">

0 commit comments

Comments
 (0)