Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CS Lab
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
Li Niko M. Arceo
CS Lab
Commits
9d25cfd4
Commit
9d25cfd4
authored
Mar 06, 2020
by
Li Niko M. Arceo
🦈
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Heroes and home added
parent
1f88a7c9
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
10 additions
and
0 deletions
+10
-0
cloud.png
heroes/templates/cloud.png
+0
-0
detail_cloud.html
heroes/templates/detail_cloud.html
+0
-0
detail_jester.html
heroes/templates/detail_jester.html
+0
-0
detail_sunflowey.html
heroes/templates/detail_sunflowey.html
+0
-0
heroes.html
heroes/templates/heroes.html
+3
-0
home.html
heroes/templates/home.html
+3
-0
jester.png
heroes/templates/jester.png
+0
-0
sunflowey.png
heroes/templates/sunflowey.png
+0
-0
urls.py
heroes/urls.py
+1
-0
views.py
heroes/views.py
+3
-0
__init__.cpython-38.pyc
willowisp/__pycache__/__init__.cpython-38.pyc
+0
-0
settings.cpython-38.pyc
willowisp/__pycache__/settings.cpython-38.pyc
+0
-0
No files found.
templates/cloud.png
→
heroes/
templates/cloud.png
View file @
9d25cfd4
File moved
templates/detail_cloud.html
→
heroes/
templates/detail_cloud.html
View file @
9d25cfd4
File moved
templates/detail_jester.html
→
heroes/
templates/detail_jester.html
View file @
9d25cfd4
File moved
templates/detail_sunflowey.html
→
heroes/
templates/detail_sunflowey.html
View file @
9d25cfd4
File moved
heroes/templates/heroes.html
0 → 100644
View file @
9d25cfd4
<html>
<title>
Hero List
</title>
</html>
\ No newline at end of file
heroes/templates/home.html
0 → 100644
View file @
9d25cfd4
<html>
<title>
The Will of the Wisps Wiki
</title>
</html>
\ No newline at end of file
templates/jester.png
→
heroes/
templates/jester.png
View file @
9d25cfd4
File moved
templates/sunflowey.png
→
heroes/
templates/sunflowey.png
View file @
9d25cfd4
File moved
heroes/urls.py
View file @
9d25cfd4
...
...
@@ -6,6 +6,7 @@ from .views import HomeView, CloudView, JesterView, SunfloweyView
urlpatterns
=
[
url
(
r'^$'
,
HomeView
.
as_view
(),
name
=
'home'
),
url
(
r'^heroes$'
,
HomeView
.
as_view
(),
name
=
'heroes'
),
url
(
r'^heroes/cloud$'
,
CloudView
.
as_view
(),
name
=
'cloud'
),
url
(
r'^heroes/jester$'
,
JesterView
.
as_view
(),
name
=
'jester'
)
url
(
r'^heroes/sunflowey$'
,
SunfloweyView
.
as_view
(),
name
=
'sunflowey'
)
...
...
heroes/views.py
View file @
9d25cfd4
...
...
@@ -2,6 +2,9 @@ from django.views.generic.base import TemplateView
class
HomeView
(
TemplateView
):
template_name
=
class
HeroesView
(
TemplateView
):
template_name
=
'home.html'
class
CloudView
(
TemplateView
):
...
...
willowisp/__pycache__/__init__.cpython-38.pyc
0 → 100644
View file @
9d25cfd4
File added
willowisp/__pycache__/settings.cpython-38.pyc
0 → 100644
View file @
9d25cfd4
File added
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