Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Jean Michel Rouly
research-questions
Commits
e22976c1
Commit
e22976c1
authored
Dec 06, 2013
by
Jean Michel Rouly
Browse files
Moved instructions to help.
parent
3eeff5c8
Changes
4
Hide whitespace changes
Inline
Side-by-side
researchquestions/settings/urls.py
View file @
e22976c1
...
...
@@ -7,7 +7,7 @@ admin.autodiscover()
urlpatterns
=
patterns
(
'website.views'
,
#### STATIC PAGES ####
url
(
r
'^
instructions$'
,
'instructions'
,
name
=
'instructions
'
),
url
(
r
'^
help$'
,
'help'
,
name
=
'help
'
),
#### DYNAMIC PAGES ####
url
(
r
'^submit$'
,
'submit_question'
,
name
=
'submit_question'
),
...
...
researchquestions/templates/
instructions
.html
→
researchquestions/templates/
help
.html
View file @
e22976c1
File moved
researchquestions/templates/layouts/navbar.html
View file @
e22976c1
...
...
@@ -21,7 +21,7 @@
{% if user.is_authenticated %}
<li><a
href=
"/feedback"
>
Feedback
</a></li>
{% endif %}
<li><a
href=
"/
instructions
"
>
Help
</a></li>
<li><a
href=
"/
help
"
>
Help
</a></li>
<li><a
href=
"/logout"
>
Logout
</a></li>
</ul>
...
...
researchquestions/website/views.py
View file @
e22976c1
...
...
@@ -17,8 +17,8 @@ import os
import
requests
# Create your views here.
def
instructions
(
request
):
return
render
(
request
,
'
instructions
.html'
,
{
def
help
(
request
):
return
render
(
request
,
'
help
.html'
,
{
},
)
...
...
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