Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
roomlist
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
23
Issues
23
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
SRCT
roomlist
Commits
0672d3c5
Commit
0672d3c5
authored
Jan 12, 2015
by
Daniel W Bond
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cas now links to the proper place
parent
e9dbaf3d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
roomlist/settings/urls.py
roomlist/settings/urls.py
+1
-1
roomlist/templates/layouts/navbar.html
roomlist/templates/layouts/navbar.html
+2
-2
No files found.
roomlist/settings/urls.py
View file @
0672d3c5
...
...
@@ -21,7 +21,7 @@ urlpatterns = patterns('',
# login and logout
url
(
r
'^login/$'
,
'cas.views.login'
,
name
=
'login'
),
url
(
r
'
login
/$'
,
'cas.views.logout'
,
name
=
'logout'
),
url
(
r
'
^logout
/$'
,
'cas.views.logout'
,
name
=
'logout'
),
# alternate interfaces
url
(
r
'^api/'
,
include
(
'api.urls'
)),
...
...
roomlist/templates/layouts/navbar.html
View file @
0672d3c5
...
...
@@ -22,10 +22,10 @@
{% if user.is_authenticated %}
<li><a
href=
"/accounts/student/{{ user.username }}"
>
{{ user.username }}
</a>
</li>
<li><a
href=
"
/accounts/logout/
"
>
Logout
</a>
<li><a
href=
"
{% url 'logout' %}
"
>
Logout
</a>
</li>
{% else %}
<li><a
href=
"
/accounts/login/
"
>
Login
</a>
<li><a
href=
"
{% url 'login' %}
"
>
Login
</a>
</li>
{% endif %}
</ul>
...
...
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