Skip to content
Snippets Groups Projects

AS1 update

Merged Jennifer Mankoff requested to merge week1-jen into UACCESS-23fa
3 files
+ 9
9
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 4
4
@@ -26,25 +26,25 @@
<div id="due dates">
{% if page.assigned.size > 1 %}
<strong>Assigned</strong>
<h2>Assigned</h2>
<ul>
{% for day in page.assigned %}
<li>{{day}}</li>
{% endfor %}
</ul>
{% else %}
<strong>Assigned</strong>: {{page.assigned}}
<h2>Assigned</h2>: {{page.assigned}}
{% endif %}
{% if page.due.size > 1 %}
<br> <strong>Due</strong>
<br> <h2>Due</h2>
<ul>
{% for day in page.due %}
<li>{{day}}</li>
{% endfor %}
</ul>
{% else %}
&emsp; <strong>Due</strong>: {{page.assigned}}
&emsp; <h2>Due</h2>: {{page.assigned}}
{% endif %}
</div>
Loading