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
6614ca82
Unverified
Commit
6614ca82
authored
Nov 02, 2017
by
Saleem Latif
Committed by
GitHub
Nov 02, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #16421 from edx/saleem-latif/ENT-673
ENT-673: Hide braces when ENTERPRISE_TAGLINE is not set.
parents
19c2faee
d36153cb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
+9
-3
lms/templates/header/brand.html
+3
-1
lms/templates/header/navbar-logo-header.html
+3
-1
lms/templates/navigation/navbar-logo-header.html
+3
-1
No files found.
lms/templates/header/brand.html
View file @
6614ca82
...
...
@@ -22,7 +22,9 @@ from branding import api as branding_api
% if enable_enterprise_sidebar:
<span
class=
"enterprise-tagline"
>
<
%
tagline =
configuration_helpers.get_value('ENTERPRISE_TAGLINE',
settings
.
ENTERPRISE_TAGLINE
)
%
>
${tagline}
% if tagline:
${tagline}
% endif
</span>
% endif
% if course and not disable_courseware_header:
...
...
lms/templates/header/navbar-logo-header.html
View file @
6614ca82
...
...
@@ -22,7 +22,9 @@ from branding import api as branding_api
% if enable_enterprise_sidebar:
<span
class=
"enterprise-tagline"
>
<
%
tagline =
configuration_helpers.get_value('ENTERPRISE_TAGLINE',
settings
.
ENTERPRISE_TAGLINE
)
%
>
${tagline}
% if tagline:
${tagline}
% endif
</span>
% endif
% if course:
...
...
lms/templates/navigation/navbar-logo-header.html
View file @
6614ca82
...
...
@@ -24,7 +24,9 @@ from branding import api as branding_api
% if enable_enterprise_sidebar:
<span
class=
"enterprise-tagline"
>
<
%
tagline =
configuration_helpers.get_value('ENTERPRISE_TAGLINE',
settings
.
ENTERPRISE_TAGLINE
)
%
>
${tagline}
% if tagline:
${tagline}
% endif
</span>
% endif
% if course:
...
...
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