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
43cb587e
Commit
43cb587e
authored
Jun 15, 2015
by
Nikolaos S. Papaspyrou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add part 4d, add 404 for bad queries
parent
2b369b88
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
README.md
README.md
+4
-0
views.py
urlapp/views.py
+2
-2
No files found.
README.md
View file @
43cb587e
...
...
@@ -101,3 +101,7 @@ Make views that do something, just reading the objects' data.
Make views using templates.
Edit
`urlapp/views.py`
.
Create
`urlapp/templates/index.html`
and
`urlapp/templates/details.html`
.
Add 404.
Edit
`urlapp/views.py`
.
urlapp/views.py
View file @
43cb587e
from
django.shortcuts
import
render
from
django.shortcuts
import
render
,
get_object_or_404
from
django.http
import
HttpResponse
from
.models
import
Url
...
...
@@ -16,6 +16,6 @@ def redir(request, url_id):
def
url
(
request
,
url_id
):
context
=
{
'url'
:
Url
.
objects
.
get
(
id
=
url_id
)
'url'
:
get_object_or_404
(
Url
,
id
=
url_id
)
}
return
render
(
request
,
'details.html'
,
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