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
7a66b23e
Commit
7a66b23e
authored
Jun 15, 2015
by
Nikolaos S. Papaspyrou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add redirection and URL counter
parent
1143bf2a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
views.py
urlforward/views.py
+5
-2
No files found.
urlforward/views.py
View file @
7a66b23e
from
django.shortcuts
import
render
from
django.shortcuts
import
render
,
redirect
from
.models
import
Url
...
...
@@ -11,7 +11,10 @@ def index(request):
return
render
(
request
,
'index.html'
,
context
)
def
redir
(
request
,
url_id
):
return
HttpResponse
(
"You are following the url: {}"
.
format
(
url_id
))
u
=
Url
.
objects
.
get
(
id
=
url_id
)
u
.
used
+=
1
u
.
save
()
return
redirect
(
u
.
target
)
def
details
(
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