8000 fix(babelio): fix tab name by PascalRepond · Pull Request #3687 · rero/rero-ils · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix(babelio): fix tab name #3687

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -310,9 +310,9 @@ <h3>
{% if viewcode | babeltheque_enabled_view and isbn is not none %}
<li class="nav-item">
<a class="nav-link" href="#documents-more-infos" data-toggle="tab"
id="documents-more-infos-tab" title="Babelio" role="tab"
id="documents-more-infos-tab" title="{{ _('More info') }}" role="tab"
aria-controls="documents-description" aria-selected="false">
<i class="fa fa-bars"></i> Babelio
<i class="fa fa-bars"></i> {{ _('More info') }}
</a>
</li>
{% endif %}
Expand Down Expand Up @@ -348,9 +348,9 @@ <h3>
{% if viewcode | babeltheque_enabled_view and isbn is not none %}
<li class="nav-item">
<a class="nav-link" href="#documents-more-infos" data-toggle="tab"
id="documents-more-infos-tab" title="Babelio" role="tab"
id="documents-more-infos-tab" title="{{ _('More info') }}" role="tab"
aria-controls="documents-more-infos" aria-selected="false">
<i class="fa fa-bars"></i> Babelio
<i class="fa fa-bars"></i> {{ _('More info') }}
</a>
</li>
{% endif %}
Expand Down Expand Up @@ -383,7 +383,8 @@ <h3>
{% if viewcode | babeltheque_enabled_view %}
<section class="tab-pane container" id="documents-more-infos" role="tabpanel" aria-labelledby="documents-more-infos-tab">
<!-- BABELTHEQUE -->
<div class="babelio-block mt-3">
<aside class="mt-3">Babelio</aside>
<div class="babelio-block">
<div>
<div id="BW_critiques"></div>
<div id="BW_notes">{{ _('No additionnal information yet.') }}</div>
Expand Down
Loading
0