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
2d221b1a
Commit
2d221b1a
authored
Nov 21, 2015
by
Rafal
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
0b5ee855
6327ae53
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
2 deletions
+16
-2
views.py
BeHub/Hub/views.py
+16
-2
No files found.
BeHub/Hub/views.py
View file @
2d221b1a
from
django.contrib
import
auth
from
django.contrib.auth
import
login
from
django.core.exceptions
import
ObjectDoesNotExist
from
django.http
import
HttpResponseRedirect
,
HttpResponse
from
django.shortcuts
import
render
,
render_to_response
from
django.template
import
RequestContext
...
...
@@ -77,6 +80,17 @@ class CategoryViewSet(viewsets.ModelViewSet):
def
login_page
(
request
):
context
=
RequestContext
(
request
)
if
not
request
.
method
==
'POST'
:
context
=
RequestContext
(
request
)
return
render_to_response
(
'page/login.html'
,
{},
context
)
\ No newline at end of file
return
render_to_response
(
'page/login.html'
,
{},
context
)
username
=
request
.
POST
.
get
(
'username'
,
''
)
password
=
request
.
POST
.
get
(
'password'
,
''
)
user
=
auth
.
authenticate
(
username
=
username
,
password
=
password
)
if
user
:
login
(
request
,
user
)
return
HttpResponseRedirect
(
'/'
,
{},
context
)
else
:
return
HttpResponse
(
"Invalid login details supplied."
)
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