{% extends "base.html" %} {% load static %} {% load custom_tags %} {% block title %}Hackathons - OWASP BLT{% endblock %} {% block content %} {% include "includes/sidenav.html" %}

Hackathons

Join coding competitions, collaborate with others, and win prizes!

{% if request.user.is_authenticated %} {% endif %}

Filter Hackathons

Upcoming

{{ upcoming_count }}

Ongoing

{{ ongoing_count }}

Past

{{ past_count }}

{% if hackathons %}
{% for hackathon in hackathons %}
{% if hackathon.banner_image %}
{% else %}
{% endif %}

{{ hackathon.name }}

{% if hackathon.is_ongoing %} Ongoing {% elif hackathon.has_ended %} Ended {% else %} Upcoming {% endif %}

Organized by {{ hackathon.organization.name }}

{{ hackathon.description|truncatechars:150 }}

{{ hackathon.start_time|date:"M d, Y" }} - {{ hackathon.end_time|date:"M d, Y" }}
View Details
{% endfor %}
{% if is_paginated %}
{% endif %} {% else %}

No Hackathons Found

There are no hackathons matching your filters.

Clear Filters
{% endif %}
{% endblock %}