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
38713373
Commit
38713373
authored
Jun 15, 2015
by
Nikolaos S. Papaspyrou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add part 4f, make it redirect and count
parent
e482ee51
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
README.md
README.md
+3
-0
views.py
urlapp/views.py
+5
-2
No files found.
README.md
View file @
38713373
...
...
@@ -107,3 +107,6 @@ Edit `urlapp/views.py`.
Higher-level URLs.
Edit
`urlapp/templates/index.html`
.
Make it redirect and count!
Edit
`urlapp/views.py`
.
urlapp/views.py
View file @
38713373
from
django.shortcuts
import
render
,
get_object_or_404
from
django.shortcuts
import
render
,
get_object_or_404
,
redirect
from
django.http
import
HttpResponse
from
.models
import
Url
...
...
@@ -12,7 +12,10 @@ def index(request):
return
render
(
request
,
'index.html'
,
context
)
def
redir
(
request
,
url_id
):
return
HttpResponse
(
"You're following URL {}."
.
format
(
url_id
))
u
=
get_object_or_404
(
Url
,
id
=
url_id
)
u
.
used
+=
1
u
.
save
()
return
redirect
(
u
.
target
)
def
url
(
request
,
url_id
):
context
=
{
...
...
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