Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_group17
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
Vaughn Nephi Fajardo
widget_group17
Commits
6c6e44db
Commit
6c6e44db
authored
May 15, 2022
by
Vaughn Fajardo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: page titles reflect extension of base.html
parent
7d55a641
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
1 deletion
+9
-1
detail.html
widget_group_17/forum/templates/forum/detail.html
+2
-0
index.html
widget_group_17/forum/templates/forum/index.html
+2
-0
details.html
widget_group_17/homepage/templates/homepage/details.html
+2
-0
index.html
widget_group_17/homepage/templates/homepage/index.html
+2
-0
base.html
widget_group_17/templates/base.html
+1
-1
settings.cpython-39.pyc
...up_17/widget_group_17/__pycache__/settings.cpython-39.pyc
+0
-0
No files found.
widget_group_17/forum/templates/forum/detail.html
View file @
6c6e44db
{% extends "base.html" %}
{% block page-title %}Details{% endblock %}
{% block content %}
<h1>
{{ post.post_title }}
</h1>
<h3>
by {{ post.author.first_name }} {{ post.author.last_name }}, {{ post.pub_date|date:"SHORT_DATE_FORMAT" }}
</h3>
...
...
widget_group_17/forum/templates/forum/index.html
View file @
6c6e44db
{% extends "base.html" %}
{% block page-title %}Forum Posts{% endblock %}
{% block content%}
<h2>
Forum Posts:
</h2>
{% if posts_list %}
...
...
widget_group_17/homepage/templates/homepage/details.html
View file @
6c6e44db
{% extends "base.html" %}
{% block page-title %}Details{% endblock %}
{% block content %}
<div>
<ul>
...
...
widget_group_17/homepage/templates/homepage/index.html
View file @
6c6e44db
{% extends "base.html" %}
{% block page-title %}Widget User Homepage{% endblock %}
{% block content %}
<div
style =
"position: relative; left:80px; top:30px;"
>
<h1>
WELCOME TO WIDGET!
</h1>
...
...
widget_group_17/templates/base.html
View file @
6c6e44db
...
...
@@ -7,7 +7,7 @@
<meta
name=
"viewport"
content=
"width=device-width,initial-scale=1"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{% static 'style.css' %}"
>
<title>
Website
</title>
<title>
{% block page-title %}{% endblock %}
</title>
</head>
<body>
{% block content %}
...
...
widget_group_17/widget_group_17/__pycache__/settings.cpython-39.pyc
View file @
6c6e44db
No preview for this file type
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