fix: href issue for challenges

This commit is contained in:
Rushil Umaretiya 2021-09-22 07:47:46 -04:00 committed by GitHub
parent e56e0e37cc
commit d032b2d493
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,7 +44,7 @@
<div id="c-{{ category.id }}" class='row'>
{% for challenge, status in challenges.items %}
{% if status.0.unblocked %}
<a href="#" class='col-lg-3 col-md-4 col-sm-6 col-xs-12'>
<a class='col-lg-3 col-md-4 col-sm-6 col-xs-12'>
<div id="box{{ status.0.id }}" class="box {% if status.1 == 'available' %}available{% elif status.1 == 'completed' %}completed{% else %}locked{% endif %} p-3">
<div class="centered-div">
<h4>{{ status.0.name }}</h4>
@ -87,4 +87,4 @@
</div>
{% endfor %}
</div>
{% endblock %}
{% endblock %}