You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
loop/habits_tracker/habits/templates/habits/habit_detail.html

37 lines
837 B

{% extends "base.html" %}
{% block content %}
<h2>{{ object.name }}</h2>
<p>{{ object.description }}</p>
<h3>Calendar</h3>
<table>
<thead>
<tr>
<th>Mon</th>
<th>Tue</th>
<th>Wed</th>
<th>Thu</th>
<th>Fri</th>
<th>Sat</th>
<th>Sun</th>
</tr>
</thead>
<tbody>
{% for week in month_days %}
<tr>
{% for day in week %}
<td class="{% if day.month != current_month %}not-current-month{% endif %} {% if day in reps %}has-rep{% endif %}">
{% if day.month == current_month %}
{{ day.day }}
{% endif %}
</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
<a href="{% url 'habits:habit_list' %}">Back to Habits</a>
{% endblock %}