Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
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
edx
edx-platform
Commits
6ea5a8a5
Commit
6ea5a8a5
authored
Jan 12, 2015
by
Braden MacDonald
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix hard-coded studio name
parent
16dc83df
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
cms/templates/index.html
+2
-2
cms/templates/widgets/header.html
+1
-1
No files found.
cms/templates/index.html
View file @
6ea5a8a5
...
...
@@ -2,7 +2,7 @@
<
%
inherit
file=
"base.html"
/>
<
%
def
name=
"online_help_token()"
><
%
return
"
home
"
%
></
%
def>
<
%
block
name=
"title"
>
${_("
Studio Home"
)}
</
%
block>
<
%
block
name=
"title"
>
${_("
{studio_name} Home").format(studio_name=settings.STUDIO_SHORT_NAME
)}
</
%
block>
<
%
block
name=
"bodyclass"
>
is-signedin index view-dashboard
</
%
block>
<
%
block
name=
"requirejs"
>
...
...
@@ -14,7 +14,7 @@
<
%
block
name=
"content"
>
<div
class=
"wrapper-mast wrapper"
>
<header
class=
"mast has-actions"
>
<h1
class=
"page-header"
>
${_("
Studio Home"
)}
</h1>
<h1
class=
"page-header"
>
${_("
{studio_name} Home").format(studio_name=settings.STUDIO_SHORT_NAME
)}
</h1>
% if user.is_active:
<nav
class=
"nav-actions"
>
...
...
cms/templates/widgets/header.html
View file @
6ea5a8a5
...
...
@@ -183,7 +183,7 @@
<div
class=
"nav-sub"
>
<ul>
<li
class=
"nav-item nav-account-dashboard"
>
<a
href=
"/"
>
${_("
Studio Home"
)}
</a>
<a
href=
"/"
>
${_("
{studio_name} Home").format(studio_name=settings.STUDIO_SHORT_NAME
)}
</a>
</li>
<li
class=
"nav-item nav-account-signout"
>
<a
class=
"action action-signout"
href=
"${reverse('logout')}"
>
${_("Sign Out")}
</a>
...
...
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