Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_princessgabi
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
Ysabella Panghulan
midterm_princessgabi
Commits
a483a340
Commit
a483a340
authored
May 12, 2023
by
Ysabella Panghulan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed merge conflicts in main branch
parent
4c48db27
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
38 deletions
+16
-38
models.py
widget_princessgabi/dashboard/models.py
+0
-7
dashboard.html
...princessgabi/dashboard/templates/dashboard/dashboard.html
+16
-24
urls.py
widget_princessgabi/dashboard/urls.py
+0
-7
No files found.
widget_princessgabi/dashboard/models.py
View file @
a483a340
...
...
@@ -17,14 +17,7 @@ class WidgetUser(models.Model):
department
=
models
.
ForeignKey
(
Department
,
on_delete
=
models
.
CASCADE
)
def
__str__
(
self
):
<<<<<<<
HEAD
return
self
.
last_name
+
' '
+
self
.
first_name
def
get_absolute_url
(
self
):
return
reverse
(
"dashboard:widgetuser-details"
,
kwargs
=
{
"pk"
:
self
.
pk
})
=======
return
self
.
first_name
+
' '
+
self
.
last_name
def
get_absolute_url
(
self
):
return
reverse
(
"widgetusers:user-details"
,
kwargs
=
{
"pk"
:
self
.
pk
})
>>>>>>>
50
c48d9
(
created
dashboard
.
html
,
updated
models
.
py
,
views
.
py
,
urls
.
py
to
account
for
new
dashboard
page
)
widget_princessgabi/dashboard/templates/dashboard/dashboard.html
View file @
a483a340
...
...
@@ -5,32 +5,24 @@
{% block title %}Widget v2{% endblock %}
{% block content %}
<h1>
Welcome to Widget!
</h1>
<h1>
Welcome to Widget!
</h1>
<h2>
Widget Users:
</h2>
<ul>
{% for user in users %}
<li>
<
<<<<<<
HEAD
<
a
href =
"{{ user.get_absolute_url }}"
>
{{ user.last_name }}, {{ user.first_name }}
</a>
=======
<a
href =
"{{ user.get_absoluteurl }}"
>
{{ user.last_name }}, {{ user.first_name }}
</a>
>>>>>>> 50c48d9 (created dashboard.html, updated models.py, views.py, urls.py to account for new dashboard page)
</li>
{% endfor %}
</ul>
<h2>
Widget Users:
</h2>
<ul>
{% for user in users %}
<li>
<a
href=
"{{ user.get_absolute_url }}"
>
{{ user.last_name }}, {{ user.first_name }}
</a>
</li>
{% endfor %}
</ul>
<
<<<<<<
HEAD
<
a
href =
"/dashboard/widgetusers/add"
>
Add Widget User
</a>
=======
<a
href =
"../widgetusers/add"
>
Add Widget User
</a>
>>>>>>> 50c48d9 (created dashboard.html, updated models.py, views.py, urls.py to account for new dashboard page)
<a
href=
"/dashboard/widgetusers/add"
>
Add Widget User
</a>
<div>
<a
href =
"../announcements"
>
Announcement Board
</a>
<a
href =
"../forum"
>
Forum
</a>
<a
href =
"../assignments"
>
Assignments
</a>
<a
href =
"../calendar"
>
Calendar
</a>
</div>
<div>
<a
href=
"../announcements"
>
Announcement Board
</a>
<a
href=
"../forum"
>
Forum
</a>
<a
href=
"../assignments"
>
Assignments
</a>
<a
href=
"../calendar"
>
Calendar
</a>
</div>
{% endblock %}
\ No newline at end of file
widget_princessgabi/dashboard/urls.py
View file @
a483a340
from
django.urls
import
path
<<<<<<<
HEAD
from
.views
import
dashboard
,
WidgetUserDetailView
,
WidgetUserCreateView
,
WidgetUserUpdateView
urlpatterns
=
[
...
...
@@ -8,12 +7,6 @@ urlpatterns = [
path
(
'widgetusers/<int:pk>/details'
,
WidgetUserDetailView
.
as_view
(),
name
=
'widgetuser-details'
),
path
(
'widgetusers/add'
,
WidgetUserCreateView
.
as_view
(),
name
=
"widgetuser-add"
),
path
(
'widgetusers/<int:pk>/edit'
,
WidgetUserUpdateView
.
as_view
(),
name
=
"widgetuser-edit"
),
=======
from
.views
import
dashboard
urlpatterns
=
[
path
(
''
,
dashboard
,
name
=
'dashboard'
),
>>>>>>>
50
c48d9
(
created
dashboard
.
html
,
updated
models
.
py
,
views
.
py
,
urls
.
py
to
account
for
new
dashboard
page
)
]
app_name
=
"dashboard"
\ 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