Skip to content

Commit

Permalink
fix: replace lowercases with upper cases in urls
Browse files Browse the repository at this point in the history
Ref: #167
  • Loading branch information
kunfang98927 committed Nov 22, 2024
1 parent 47c3464 commit 20a944d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<div class="col-xl-3">
<div class="px-3 pt-3 me-1 mb-3 sidebar-container">
<div class="info-block p-2 mb-3 notranslate">
{% if active_language.en_label == "french" %}
{% if active_language.en_label == "French" %}
<h4>Système Hornbostel-Sachs</h4>
{% else %}
<h4>Hornbostel-Sachs Classification</h4>
Expand Down
4 changes: 2 additions & 2 deletions web-app/django/VIM/apps/main/templates/main/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ <h1>
</div>
<div class="row">
<div class="col-6">
<a href="{% url "instrument-list" %}">
<a href="{% url "instrument-list" %}?language=English">
<button class="btn btn-warning rounded-pill start-btn">Get Started</button>
</a>
</div>
<div class="col-6 notranslate">
<a href="{% url "instrument-list" %}?language=french">
<a href="{% url "instrument-list" %}?language=French">
<button class="btn btn-warning rounded-pill start-btn">Commencer</button>
</a>
</div>
Expand Down

0 comments on commit 20a944d

Please sign in to comment.