Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions website/templates/bounties_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ <h2 class="text-2xl font-bold text-gray-800 flex items-center">
<div class="flex items-center">
<img src="{{ earner.avatar_url }}"
alt="{{ earner.name }}"
width="40"
height="40"
class="w-10 h-10 rounded-full mr-3">
<a href="{{ earner.github_url }}"
target="_blank"
Expand Down
2 changes: 1 addition & 1 deletion website/templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ <h3 class="text-xl font-bold text-gray-900">{{ hackathon.name }}</h3>
</div>
<p class="text-gray-600 text-sm mb-3">
Organized by <a href="{% url 'organization_detail' slug=hackathon.organization.slug %}"
class="text-[#e74c3c] hover:underline">{{ hackathon.organization.name }}</a>
class="text-[#e74c3c] hover:underline">{{ hackathon.organization.name }}</a>
</p>
<p class="text-gray-700 mb-4 line-clamp-3">{{ hackathon.description|truncatechars:150 }}</p>
<div class="flex items-center text-sm text-gray-500 mb-4">
Expand Down
2 changes: 1 addition & 1 deletion website/views/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from django.core.files.storage import default_storage
from django.core.management import call_command, get_commands, load_command_class
from django.db import connection, models
from django.db.models import Case, Count, DecimalField, F, OuterRef, Q, Subquery, Sum, Value, When
from django.db.models import Case, Count, DecimalField, F, Q, Sum, Value, When
from django.db.models.functions import Coalesce, TruncDate
from django.http import Http404, HttpResponse, JsonResponse
from django.shortcuts import redirect, render
Expand Down
Loading