Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Data Logistics Service
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eFlows4HPC WP2
Data Logistics Service
Commits
68bbb838
Commit
68bbb838
authored
1 year ago
by
Christian Boettcher
Browse files
Options
Downloads
Patches
Plain Diff
change navbar template to add SSO button
parent
d47a9e87
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#135455
passed with warnings
1 year ago
Stage: build
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dockers/eflows-airflow.docker
+1
-0
1 addition, 0 deletions
dockers/eflows-airflow.docker
templates/navbar_right.html
+91
-0
91 additions, 0 deletions
templates/navbar_right.html
with
92 additions
and
0 deletions
dockers/eflows-airflow.docker
+
1
−
0
View file @
68bbb838
...
...
@@ -3,6 +3,7 @@ FROM apache/airflow:2.2.5
USER
root
RUN
apt update
&&
apt
install
git
-y
&&
apt clean
&&
rm
-rf
/var/lib/apt/lists/
*
COPY
./templates/main.html /home/airflow/.local/lib/python3.7/site-packages/airflow/www/templates/airflow/main.html
COPY
./templates/navbar_right.html /home/airflow/.local/lib/python3.7/site-packages/airflow/www/templates/appbuilder/navbar_right.html
COPY
./templates/img/BMBF_gefoerdert_2017_en.jpg /home/airflow/.local/lib/python3.7/site-packages/airflow/www/static/BMBF_gefoerdert_2017_en.jpg
USER
airflow
...
...
This diff is collapsed.
Click to expand it.
templates/navbar_right.html
0 → 100644
+
91
−
0
View file @
68bbb838
{#
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
#}
{% macro locale_menu(languages) %}
{% set locale = session['locale'] %}
{% if not locale %}
{% set locale = 'en' %}
{% endif %}
<li
class=
"dropdown"
>
<a
class=
"dropdown-toggle"
href=
"javascript:void(0)"
>
<div
class=
"f16"
><i
class=
"flag {{languages[locale].get('flag')}}"
></i><b
class=
"caret"
></b></div>
</a>
{% if languages.keys()|length > 1 %}
<ul
class=
"dropdown-menu"
>
<li
class=
"dropdown"
>
{% for lang in languages %}
{% if lang != locale %}
<a
href=
"{{appbuilder.get_url_for_locale(lang)}}"
>
<div
class=
"f16"
><i
class=
"flag {{languages[lang].get('flag')}}"
></i>
- {{languages[lang].get('name')}}
</div></a>
{% endif %}
{% endfor %}
</li>
</ul>
{% endif %}
</li>
{% endmacro %}
{# clock and timezone menu #}
<li
class=
"dropdown"
id=
"timezone-dropdown"
>
<a
class=
"dropdown-toggle"
style=
"display:none"
href=
"#"
>
<time
id=
"clock"
class=
"js-tooltip"
></time>
<b
class=
"caret"
></b>
</a>
<ul
class=
"dropdown-menu"
id=
"timezone-menu"
>
<li
id=
"timezone-utc"
><a
data-timezone=
"UTC"
href=
"#"
>
UTC
</a></li>
<li
id=
"timezone-server"
style=
"display: none;"
><a
data-timezone=
"{{ server_timezone }}"
href=
"#"
>
{{ server_timezone }}
</a></li>
<li
id=
"timezone-local"
><a
href=
"#"
>
Local
</a></li>
<li
id=
"timezone-manual"
style=
"display: none"
><a
data-timezone=
""
href=
"#"
></a></li>
<li
role=
"separator"
class=
"divider"
></li>
<li>
<form>
<label
for=
"timezone-other"
>
Other
</label>
<input
id=
"timezone-other"
placeholder=
"Select Timezone name"
autocomplete=
"off"
tabindex=
"-1"
>
</form>
</li>
</ul>
</li>
{% if not current_user.is_anonymous %}
<li
class=
"dropdown"
>
<a
class=
"dropdown-toggle"
href=
"#"
>
<span
class=
"navbar-user-icon"
title=
"{{g.user.get_full_name()}}"
>
{% if current_user.first_name and current_user.last_name %}
<span>
{{ (current_user.first_name[0] + current_user.last_name[0]).upper() }}
</span>
{% else %}
<span
class=
"material-icons"
>
person
</span>
{% endif %}
</span>
<b
class=
"caret"
></b>
</a>
<ul
class=
"dropdown-menu"
>
<li><a
href=
"{{appbuilder.get_url_for_userinfo}}"
><span
class=
"material-icons"
>
account_circle
</span>
{{_("Your Profile")}}
</a></li>
<li
role=
"separator"
class=
"divider"
></li>
<li><a
href=
"{{appbuilder.get_url_for_logout}}"
><span
class=
"material-icons"
>
exit_to_app
</span>
{{_("Log Out")}}
</a></li>
</ul>
</li>
{% else %}
<li>
<a
href=
"{{appbuilder.get_url_for_login}}"
><span
class=
"material-icons"
>
login
</span>
{{_("Log In")}}
</a>
</li>
<li>
<a
href=
"/unity"
><span
class=
"material-icons"
>
login
</span>
{{_("Log In via SSO")}}
</a>
</li>
{% endif %}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment