Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
undergrad-accessibility-website
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
teaching-materials
undergrad-accessibility-website
Merge requests
!18
Couldn't fetch the linked file.
AS1 update
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
AS1 update
week1-jen
into
UACCESS-23fa
Overview
0
Commits
6
Pipelines
0
Changes
8
Merged
Jennifer Mankoff
requested to merge
week1-jen
into
UACCESS-23fa
1 year ago
Overview
0
Commits
6
Pipelines
0
Changes
3
Expand
👍
0
👎
0
Merge request reports
Viewing commit
f1cff0ac
Prev
Next
Show latest version
3 files
+
9
−
9
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
f1cff0ac
fixed assigned and due dates to use headers; as1
· f1cff0ac
Jennifer Mankoff
authored
1 year ago
_layouts/assignment.html
+
4
−
4
Options
@@ -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 %}
 
<
strong>
Due
</strong
>
: {{page.assigned}}
 
<
h2>
Due
</h2
>
: {{page.assigned}}
{% endif %}
</div>
Loading