Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
BeHub-web
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dominik Rosiek
BeHub-web
Commits
55ef8d90
Commit
55ef8d90
authored
Nov 21, 2015
by
Dominik Rosiek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
yhy
parent
cbc95b4d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
views.py
BeHub/Hub/views.py
+5
-2
No files found.
BeHub/Hub/views.py
View file @
55ef8d90
from
django.core.exceptions
import
ObjectDoesNotExist
from
django.core.exceptions
import
ObjectDoesNotExist
from
django.shortcuts
import
render
,
render_to_response
from
django.shortcuts
import
render
,
render_to_response
from
django.template
import
RequestContext
# Create your views here.
# Create your views here.
from
rest_framework
import
viewsets
from
rest_framework
import
viewsets
...
@@ -75,5 +76,7 @@ class CategoryViewSet(viewsets.ModelViewSet):
...
@@ -75,5 +76,7 @@ class CategoryViewSet(viewsets.ModelViewSet):
serializer_class
=
CategorySerializer
serializer_class
=
CategorySerializer
def
login_page
(
self
):
def
login_page
(
request
):
return
render_to_response
(
'page/login.html'
,
{})
if
not
request
.
method
==
'POST'
:
\ No newline at end of file
context
=
RequestContext
(
request
)
return
render_to_response
(
'page/login.html'
,
{},
context
)
\ No newline at end of file
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