Skip to content

Commit 0e5ac5e

Browse files
authored
Merge pull request #2 from tethysplatform/tethys4_updates
More Tethys 4 Updates
2 parents bc436ae + b8acfeb commit 0e5ac5e

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

install.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ requirements:
99
conda:
1010
channels:
1111
- conda-forge
12+
- erdc/label/dev
1213
packages:
1314
- panel
1415
- param
16+
- bokeh-django
1517

1618
pip:
1719

tethysapp/bokeh_tutorial/templates/bokeh_tutorial/base.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
{% block app_navigation_items %}
1616
{% url 'bokeh_tutorial:home' as home_url %}
1717
{% url 'bokeh_tutorial:shapes' as shapes_url %}
18-
<li class="title">Examples</li>
19-
<li class="{% if request.path == home_url %}active{% endif %}"><a href="{{ home_url }}">Sea Surface</a></li>
20-
<li class="{% if request.path == shapes_url %}active{% endif %}"><a href="{{ shapes_url }}">Shapes</a></li>
18+
<li class="nav-item title">Examples</li>
19+
<li class="nav-item"><a class="nav-link{% if request.path == home_url %} active{% endif %}" href="{{ home_url }}">Sea Surface</a></li>
20+
<li class="nav-item"><a class="nav-link{% if request.path == shapes_url %} active{% endif %}" href="{{ shapes_url }}">Shapes</a></li>
2121
{% endblock %}
2222

2323
{% block app_content %}

0 commit comments

Comments
 (0)