Skip to content

Commit

Permalink
Add simple display of the slots returned. Part of #9
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian McEwen committed Oct 6, 2020
1 parent f2f247b commit c542447
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions website/templates/select-a-time.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ <h2>
{% for d in calendar.dates %}
{% for r in d.resources %}
<p>{{ d.date }} Resource name: {{r.resourceName}}</p>
{% for s in r.slots %}
<p>{{s.starts}} - {{s.ends}} {{s.status}}</p>
{% endfor %}
{% endfor %}
{% endfor %}
</div>
Expand Down

0 comments on commit c542447

Please sign in to comment.