Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_casanatics
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
John Aidan Vincent M. Ng
midterm_casanatics
Commits
96508d52
Commit
96508d52
authored
May 12, 2023
by
justin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: finalized ss (TODO: do for assignments page)
parent
f9ba1a62
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
9 deletions
+24
-9
announcement-details.html
...rd/templates/announcement_board/announcement-details.html
+2
-2
event-details.html
...cs/calendar_app/templates/calendar_app/event-details.html
+5
-5
db.sqlite3
widget_casanatics/db.sqlite3
+0
-0
forumpost-details.html
...t_casanatics/forum/templates/forum/forumpost-details.html
+1
-1
style.css
widget_casanatics/static/css/style.css
+16
-1
No files found.
widget_casanatics/announcement_board/templates/announcement_board/announcement-details.html
View file @
96508d52
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
<p>
{{ object.body }}
</p>
<br>
<p>
{{ object.body }}
</p>
<br>
{# iterate through reactions, show name: tally #}
{# iterate through reactions, show name: tally #}
Reactions:
<p>
Reactions:
</p>
<ul>
<ul>
{% for reaction in object.reactlist.all %}
{% for reaction in object.reactlist.all %}
<li>
<b>
{{ reaction.name}}:
</b>
{{ reaction.tally }}
</li>
<li>
<b>
{{ reaction.name}}:
</b>
{{ reaction.tally }}
</li>
...
...
widget_casanatics/calendar_app/templates/calendar_app/event-details.html
View file @
96508d52
...
@@ -4,11 +4,11 @@
...
@@ -4,11 +4,11 @@
{% block title %}{{ object.title }}{% endblock %}
{% block title %}{{ object.title }}{% endblock %}
{% block content %}
{% block content %}
<h1>
{{ object.activity }}
</h1>
<h1>
{{ object.activity }}
</h1>
<b>
Date and Time:
</b>
{{ object.target_datetime|date:"m/d/Y, h:i A" }}
<br
>
<b>
Date and Time:
</b>
<p>
{{ object.target_datetime|date:"m/d/Y, h:i A" }}
</p>
<br/
>
<b>
Estimated Hours:
</b>
{{ object.estimated_hours }}
<br
>
<b>
Estimated Hours:
</b>
<p>
{{ object.estimated_hours }}
</p>
<br/
>
<b>
Course:
</b>
{{ object.course }}
<br
>
<b>
Course:
</b>
<p>
{{ object.course }}
</p>
<br/
>
<b>
Mode:
</b>
{{ object.location.mode }}
<br
>
<b>
Mode:
</b>
<p>
{{ object.location.mode }}
</p>
<br/
>
<b>
Venue:
</b>
{{ object.location.getvenue|urlize }}
<br
>
<b>
Venue:
</b>
<p>
{{ object.location.getvenue|urlize }}
</p>
<br/
>
<form
action=
"../edit"
>
<form
action=
"../edit"
>
<button
type=
"Submit"
>
Edit Activity
</button>
<button
type=
"Submit"
>
Edit Activity
</button>
...
...
widget_casanatics/db.sqlite3
View file @
96508d52
No preview for this file type
widget_casanatics/forum/templates/forum/forumpost-details.html
View file @
96508d52
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
<h2>
{{ object.author.first_name }} {{ object.author.last_name }}
</h2>
<h2>
{{ object.author.first_name }} {{ object.author.last_name }}
</h2>
<h3>
{{ object.pub_datetime|date:"m/d/Y, h:i A" }}
</h3>
<h3>
{{ object.pub_datetime|date:"m/d/Y, h:i A" }}
</h3>
<p>
{{ object.body }}
</p>
<br>
<p>
{{ object.body }}
</p>
<br>
Post Replies:
<p>
Post Replies:
</p>
<ul>
<ul>
{% for reply in object.replies.all %}
{% for reply in object.replies.all %}
<li>
<li>
...
...
widget_casanatics/static/css/style.css
View file @
96508d52
@import
url('https://fonts.googleapis.com/css2?family=
Poppins:wght@200;5
00&family=Roboto:wght@700&display=swap')
;
@import
url('https://fonts.googleapis.com/css2?family=
Noto+Sans+JP&family=Poppins:ital,wght@0,200;0,500;1,2
00&family=Roboto:wght@700&display=swap')
;
:root
{
:root
{
--fg
:
#b7bdf8
;
--fg
:
#b7bdf8
;
...
@@ -39,6 +39,7 @@ ul {
...
@@ -39,6 +39,7 @@ ul {
li
{
li
{
padding
:
0.15rem
;
padding
:
0.15rem
;
font-family
:
'Roboto'
;
}
}
h1
{
h1
{
...
@@ -50,6 +51,20 @@ h2 {
...
@@ -50,6 +51,20 @@ h2 {
font-weight
:
200
;
font-weight
:
200
;
}
}
h3
{
font-family
:
'Poppins'
,
sans-serif
;
font-style
:
italic
;
}
p
{
font-family
:
'Poppins'
,
sans-serif
;
font-weight
:
200
;
}
b
{
font-family
:
'Poppins'
,
sans-serif
;
}
button
{
button
{
border-radius
:
0.15rem
;
border-radius
:
0.15rem
;
padding
:
0.5rem
;
padding
:
0.5rem
;
...
...
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