Advertisement
a_igin

Untitled

Jun 15th, 2020
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. {% for week in weeks %}
  2. <tr>
  3. {% for day in week %}
  4. {% with day=day|default:'' %}
  5. <td class="calendar-day {% if year == now.year and month == now.month and day == now.day %}now{% endif %}">
  6. {{ day }}
  7. </td>
  8. {% endwith %}
  9. {% endfor %}
  10. </tr>
  11. {% endfor %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement