Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widgets_FEKK
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kyla Martin
widgets_FEKK
Commits
4f7f5afc
Commit
4f7f5afc
authored
May 18, 2022
by
Emmanuel Linus T. Evangelista
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://gitlab.discs.ateneo.edu/totallynotkai/widgets-fekk
parents
087073ca
ebcc9ec4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
8 deletions
+13
-8
README.md
README.md
+3
-2
assignment_list.html
...KK/Assignments/templates/Assignments/assignment_list.html
+9
-5
assignments.html
WidgetFEKK/Assignments/templates/assignments.html
+1
-1
No files found.
README.md
View file @
4f7f5afc
# Widgets FEKK
CSCI 40 - A and C
## Lab
1
## Lab
Contributors:
-
Emmanuel Linus Evangelista (Forum)
-
Kyla Sydney Martin (Announcements)
...
...
@@ -9,4 +9,5 @@ Contributors:
-
Franco Manuel Velasco (Homepage)
Video Link for Lab 1: https://drive.google.com/file/d/1iZN6jfImQB5sxjsqfMPsWcjvSW20x3ei/view?usp=sharing
Video Link for Lab 2: https://drive.google.com/drive/folders/1T3HRmLxzgxY3vQLCxVyrm97430llL96i?usp=sharing
\ No newline at end of file
Video Link for Lab 2: https://drive.google.com/drive/folders/1T3HRmLxzgxY3vQLCxVyrm97430llL96i?usp=sharing
Video Link for Lab 3: https://drive.google.com/drive/folders/1_50dYF_dUWmvoTX1KkqkKXG9AWM3xUS8?usp=sharing
\ No newline at end of file
WidgetFEKK/Assignments/templates/Assignments/assignment_list.html
View file @
4f7f5afc
...
...
@@ -13,12 +13,16 @@
<div
id =
"courses"
>
<ul>
<div
class =
"wrapper"
>
{% for
a in assignments
%}
{% for
c in course
%}
<div
class =
"block"
>
<h2>
{{a.course}}
</h2>
<li>
<a
href=
"/assignment/{{ a.pk }}/details"
>
{{a.name}}
</a>
</li>
<h2>
{{ c }}
</h2>
{% for a in assignments %}
{% if c == a.course%}
<li>
<a
href=
"/assignment/{{ a.pk }}/details"
>
{{a.name}}
</a>
</li>
{%endif%}
{%endfor%}
</div>
{%endfor%}
</div>
...
...
WidgetFEKK/Assignments/templates/assignments.html
View file @
4f7f5afc
...
...
@@ -16,6 +16,6 @@
<div
id =
"courses"
>
<h1>
List of courses:
</h1>
</div>
{% include "Assignments/assignment_list.html" with assignments=assignment %}
{% include "Assignments/assignment_list.html" with assignments=assignment
course=course
%}
{%endblock content%}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment