Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
D
django-url-follower
Project
Project
Details
Activity
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nikolaos S. Papaspyrou
django-url-follower
Commits
ad233b72
Commit
ad233b72
authored
Jun 15, 2015
by
Nikolaos S. Papaspyrou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add part 4b, views showing object data
parent
f6884a7c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
README.md
README.md
+3
-0
views.py
urlapp/views.py
+7
-2
No files found.
README.md
View file @
ad233b72
...
@@ -95,3 +95,6 @@ Part 4
...
@@ -95,3 +95,6 @@ Part 4
Add default view.
Add default view.
Edit
`urlapp/views.py`
, create
`urlapp/urls.py`
.
Edit
`urlapp/views.py`
, create
`urlapp/urls.py`
.
Edit
`redurl/urls.py`
.
Edit
`redurl/urls.py`
.
Make views that do something, just reading the objects' data.
urlapp/views.py
View file @
ad233b72
from
django.shortcuts
import
render
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
from
django.http
import
HttpResponse
from
.models
import
Url
# Create your views here.
# Create your views here.
def
index
(
request
):
def
index
(
request
):
return
HttpResponse
(
"Hello, world!"
)
L
=
Url
.
objects
.
all
()
output
=
', '
.
join
([
u
.
target
for
u
in
L
])
return
HttpResponse
(
output
)
def
redir
(
request
,
url_id
):
def
redir
(
request
,
url_id
):
return
HttpResponse
(
"You're following URL {}."
.
format
(
url_id
))
return
HttpResponse
(
"You're following URL {}."
.
format
(
url_id
))
def
url
(
request
,
url_id
):
def
url
(
request
,
url_id
):
return
HttpResponse
(
"You're looking at URL {}."
.
format
(
url_id
))
u
=
Url
.
objects
.
get
(
id
=
url_id
)
return
HttpResponse
(
"URL {} goes to {}."
.
format
(
url_id
,
u
.
target
))
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