-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
homepage: implement organisation view
Co-Authored-by: Bertrand Zuchuat <[email protected]>
- Loading branch information
1 parent
5e9c5e2
commit cb1716e
Showing
17 changed files
with
1,003 additions
and
177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
152 changes: 152 additions & 0 deletions
152
rero_ils/theme/templates/rero_ils/_frontpage_block_bulle.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
{# -*- coding: utf-8 -*- | ||
|
||
RERO ILS | ||
Copyright (C) 2021 RERO | ||
|
||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Affero General Public License as published by | ||
the Free Software Foundation, version 3 of the License. | ||
|
||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Affero General Public License for more details. | ||
|
||
You should have received a copy of the GNU Affero General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
#} | ||
<section class="col-md-4 order-1 order-md-1 px-4 pt-4"> | ||
{% if current_i18n.language == 'en' %} | ||
<h5>Bulle Library Catalogue</h5> | ||
This interface gives you access to a list of documents from the following three libraries: | ||
<ul class="pl-3"> | ||
<li>Bulle Library</li> | ||
<li>Lec'Tour, La Tour-de-Trême school library</li> | ||
<li>Libellule, La Léchère school library</li> | ||
</ul> | ||
{% endif %} | ||
{% if current_i18n.language == 'fr' %} | ||
<h5>Catalogue de la Bibliothèque de Bulle</h5> | ||
Cette interface donne accès à la liste des documents des trois bibliothèques suivantes: | ||
<ul class="pl-3"> | ||
<li>La Bibliothèque de Bulle</li> | ||
<li>Lec’Tour, la bibliothèque scolaire de la Tour-de-Trême</li> | ||
<li>Libellule, la bibliothèque scolaire de La Léchère</li> | ||
</ul> | ||
{% endif %} | ||
{% if current_i18n.language == 'de' %} | ||
<h5>Online-Katalog der Bibliothek Bulle</h5> | ||
Diese Webseite ermöglicht den Zugriff auf die Liste der Dokumente der folgenden drei Bibliotheken: | ||
<ul class="pl-3"> | ||
<li>Die Bibliothek Bulle</li> | ||
<li>Lec'Tour, die Schulbibliothek La Tour-de-Trême</li> | ||
<li>Libellule, die Schulbibliothek La Léchère</li> | ||
</ul> | ||
{% endif %} | ||
{% if current_i18n.language == 'it' %} | ||
<h5>Catalogo della Biblioteca di Bulle</h5> | ||
Questa interfaccia dà accesso all'elenco dei documenti delle tre seguenti biblioteche: | ||
<ul class="pl-3"> | ||
<li>La Biblioteca di Bulle</li> | ||
<li>Lec'Tour, la biblioteca scolastica di La Tour-de-Trême</li> | ||
<li>Libellule, la biblioteca scolastica di La Léchère</li> | ||
</ul> | ||
{% endif %} | ||
</section> | ||
<section class="col-md-4 order-1 order-md-2 px-4 pt-4"> | ||
{% if current_i18n.language == 'en' %} | ||
<p class="mb-3 font-weight-bold"> | ||
When you log in for the first time, please reset your password using your e-mail | ||
(function "Forgot password"). Registrants without an e-mail address can contact the lending desk. | ||
</p> | ||
<h5>Services and opening hours</h5> | ||
<ul class="list-unstyled"> | ||
<li><a href="https://musee-gruerien.ch/bibliotheque-de-bulle/">Bulle Library</a></li> | ||
<li><a href="https://musee-gruerien.ch/bibliotheque-de-bulle/lectour-la-tour-de-treme/">Lec’Tour</a></li> | ||
<li><a href="https://musee-gruerien.ch/bibliotheque-de-bulle/libellule-dardens/">Libellule</a></li> | ||
</ul> | ||
{% endif %} | ||
{% if current_i18n.language == 'fr' %} | ||
<p class="mb-3 font-weight-bold"> | ||
Lors de votre première connexion, merci de redéfinir votre mot de passe au moyen de votre e-mail | ||
(fonction "Mot de passe oublié"). Les personnes inscrites sans e-mail peuvent s'adresser au bureau de prêt. | ||
</p> | ||
<h5>Services et horaires</h5> | ||
<ul class="list-unstyled"> | ||
<li><a href="https://musee-gruerien.ch/bibliotheque-de-bulle/">Bibliothèque de Bulle</a></li> | ||
<li><a href="https://musee-gruerien.ch/bibliotheque-de-bulle/lectour-la-tour-de-treme/">Lec’Tour</a></li> | ||
<li><a href="https://musee-gruerien.ch/bibliotheque-de-bulle/libellule-dardens/">Libellule</a></li> | ||
</ul> | ||
{% endif %} | ||
{% if current_i18n.language == 'de' %} | ||
<p class="mb-3 font-weight-bold"> | ||
Wenn Sie sich zum ersten Mal einloggen, setzen Sie bitte Ihr Passwort mit Hilfe Ihrer E-Mail zurück | ||
(Funktion "Passwort vergessen"). Registrierte Benutzer ohne E-Mail-Adresse können sich an die Ausleihtheke wenden. | ||
</p> | ||
<h5>Dienstleistungen und Öffnungszeiten</h5> | ||
<ul class="list-unstyled"> | ||
<li><a href="https://musee-gruerien.ch/bibliotheque-de-bulle/">Bibliothek Bulle</a></li> | ||
<li><a href="https://musee-gruerien.ch/bibliotheque-de-bulle/lectour-la-tour-de-treme/">Lec’Tour</a></li> | ||
<li><a href="https://musee-gruerien.ch/bibliotheque-de-bulle/libellule-dardens/">Libellule</a></li> | ||
</ul> | ||
{% endif %} | ||
{% if current_i18n.language == 'it' %} | ||
<p class="mb-3 font-weight-bold"> | ||
Quando accedi per la prima volta, reimposta la tua password usando la tua e-mail | ||
(funzione "Password dimenticata"). Gli utenti registrati senza un indirizzo e-mail possono contattare il banco prestiti. | ||
</p> | ||
<h5>Servizi e orari</h5> | ||
<ul class="list-unstyled"> | ||
<li><a href="https://musee-gruerien.ch/bibliotheque-de-bulle/">Biblioteca di Bulle</a></li> | ||
<li><a href="https://musee-gruerien.ch/bibliotheque-de-bulle/lectour-la-tour-de-treme/">Lec’Tour</a></li> | ||
<li><a href="https://musee-gruerien.ch/bibliotheque-de-bulle/libellule-dardens/">Libellule</a></li> | ||
</ul> | ||
{% endif %} | ||
</section> | ||
<section class="col-md-4 order-3 order-md-3 px-4 pt-4"> | ||
{% if current_i18n.language == 'en' %} | ||
{%- include "rero_ils/_frontpage_organisation_link.html" %} | ||
<h5>e-book catalogue</h5> | ||
<ul class="list-unstyled"> | ||
<li><a href="https://musee-gruerien.ch/bibliotheque-de-bulle/frebooks-2/">FReBOOKS</a></li> | ||
</ul> | ||
<h5>SLSP Network Catalogue</h5> | ||
<ul class="list-unstyled"> | ||
<li><a href="https://swisscovery.slsp.ch/discovery/search?vid=41SLSP_NETWORK:VU1_UNION&lang=en">Swisscovery</a></li> | ||
</ul> | ||
{% endif %} | ||
{% if current_i18n.language == 'fr' %} | ||
{%- include "rero_ils/_frontpage_organisation_link.html" %} | ||
<h5>Catalogue d’e-books</h5> | ||
<ul class="list-unstyled"> | ||
<li><a href="https://musee-gruerien.ch/bibliotheque-de-bulle/frebooks-2/">FReBOOKS</a></li> | ||
</ul> | ||
<h5>Catalogue du réseau SLSP</h5> | ||
<ul class="list-unstyled"> | ||
<li><a href="https://swisscovery.slsp.ch/discovery/search?vid=41SLSP_NETWORK:VU1_UNION&lang=fr">Swisscovery</a></li> | ||
</ul> | ||
{% endif %} | ||
{% if current_i18n.language == 'de' %} | ||
{%- include "rero_ils/_frontpage_organisation_link.html" %} | ||
<h5>E-Book-Online-Katalog</h5> | ||
<ul class="list-unstyled"> | ||
<li><a href="https://musee-gruerien.ch/bibliotheque-de-bulle/frebooks-2/">FReBOOKS</a></li> | ||
</ul> | ||
<h5>SLSP-Netzwerk-Online-Katalog</h5> | ||
<ul class="list-unstyled"> | ||
<li><a href="https://swisscovery.slsp.ch/discovery/search?vid=41SLSP_NETWORK:VU1_UNION&lang=de">Swisscovery</a></li> | ||
</ul> | ||
{% endif %} | ||
{% if current_i18n.language == 'it' %} | ||
{%- include "rero_ils/_frontpage_organisation_link.html" %} | ||
<h5>Catalogo e-book</h5> | ||
<ul class="list-unstyled"> | ||
<li><a href="https://musee-gruerien.ch/bibliotheque-de-bulle/frebooks-2/">FReBOOKS</a></li> | ||
</ul> | ||
<h5>Catalogo della rete SLSP</h5> | ||
<ul class="list-unstyled"> | ||
<li><a href="https://swisscovery.slsp.ch/discovery/search?vid=41SLSP_NETWORK:VU1_UNION&lang=it">Swisscovery</a></li> | ||
</ul> | ||
{% endif %} | ||
</section> |
132 changes: 132 additions & 0 deletions
132
rero_ils/theme/templates/rero_ils/_frontpage_block_global.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
{# -*- coding: utf-8 -*- | ||
|
||
RERO ILS | ||
Copyright (C) 2021 RERO | ||
|
||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Affero General Public License as published by | ||
the Free Software Foundation, version 3 of the License. | ||
|
||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Affero General Public License for more details. | ||
|
||
You should have received a copy of the GNU Affero General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
#} | ||
<section class="col-md-4 order-1 order-md-1 px-4 pt-4"> | ||
{% if current_i18n.language == 'en' %} | ||
<h5>RERO+ catalogue</h5> | ||
<p> | ||
You can discover, search and request documents. The global catalogue contains the collections of the RERO+ libraries. | ||
</p> | ||
<h5>About RERO+</h5> | ||
<p> | ||
RERO+ is a competence and service centre for libraries. It is also a non-profit foundation based in Martigny, Valais.<br> | ||
<a href="https://www.rero.ch">www.rero.ch</a> | ||
</p> | ||
{% endif %} | ||
{% if current_i18n.language == 'fr' %} | ||
<h5>Catalogue RERO+</h5> | ||
<p> | ||
Vous pouvez y découvrir, rechercher et demander des documents. Le catalogue global contient les collections des bibliothèques RERO+. | ||
</p> | ||
<h5>À propos de RERO+</h5> | ||
<p> | ||
RERO+ est un centre de compétences et de services destinés aux bibliothèques. C’est aussi une fondation à but non-lucratif | ||
basée à Martigny, en Valais.<br> | ||
<a href="https://www.rero.ch">www.rero.ch</a> | ||
</p> | ||
{% endif %} | ||
{% if current_i18n.language == 'de' %} | ||
<h5>RERO+ Katalog</h5> | ||
<p> | ||
Sie können Dokumente entdecken, suchen und bestellen. Der globale Katalog enthält die Sammlungen der RERO+ Bibliotheken. | ||
</p> | ||
<h5>Über RERO+</h5> | ||
<p> | ||
RERO+ ist ein Kompetenz- und Servicezentrum für Bibliotheken. Es ist ebenfalls eine gemeinnützige Stiftung | ||
mit Sitz in Martigny, Wallis.<br> | ||
<a href="https://www.rero.ch">www.rero.ch</a> | ||
</p> | ||
{% endif %} | ||
{% if current_i18n.language == 'it' %} | ||
<h5>Catalogo RERO+</h5> | ||
<p> | ||
Puoi scoprire, cercare e richiedere documenti. Il catalogo globale contiene le collezioni delle biblioteche RERO+. | ||
</p> | ||
<h5>Su RERO+</h5> | ||
<p> | ||
RERO+ è un centro di competenza e servizi per le biblioteche. È anche una fondazione senza scopo di lucro | ||
con sede a Martigny, nel Vallese.<br> | ||
<a href="https://www.rero.ch">www.rero.ch</a> | ||
</p> | ||
{% endif %} | ||
</section> | ||
<section class="col-md-4 order-3 order-md-3 px-4 pt-4"> | ||
{%- include "rero_ils/_frontpage_organisation_link.html" %} | ||
</section> | ||
<section class="col-md-4 order-2 order-md-2 px-4 pt-4"> | ||
{% if current_i18n.language == 'en' %} | ||
<h5>Useful links</h5> | ||
<ul class="list-unstyled"> | ||
<li><a href="/ill_requests/create/">Interlibrary loan request</a></li> | ||
<li><a href="/help/public/#sinscrire">How to register</a></li> | ||
</ul> | ||
<h5>Other catalogues</h5> | ||
<ul class="list-unstyled"> | ||
<li><a href="https://doc.rero.ch/?ln=en">RERO DOC digital library</a></li> | ||
<li><a href="https://sonar.rero.ch/?ln=en">SONAR - Swiss Open Access Repository</a></li> | ||
<li><a href="https://swisscovery.slsp.ch/discovery/search?vid=41SLSP_NETWORK:VU1_UNION&lang=en">Swisscovery</a></li> | ||
<li><a href="https://renouvaud.hosted.exlibrisgroup.com/primo-explore/search?vid=41BCULIB_VU2&lang=en_US">Renouvaud</a></li> | ||
<li><a href="https://www.helveticat.ch/discovery/search?vid=41SNL_51_INST:helveticat&lang=en">Helveticat (Swiss National Library)</a></li> | ||
</ul> | ||
{% endif %} | ||
{% if current_i18n.language == 'fr' %} | ||
<h5>Liens utiles</h5> | ||
<ul class="list-unstyled"> | ||
<li><a href="/ill_requests/create/">Demande de prêt entre bibliothèque</a></li> | ||
<li><a href="/help/public/#sinscrire">Comment s'inscrire</a></li> | ||
</ul> | ||
<h5>Autres catalogues</h5> | ||
<ul class="list-unstyled"> | ||
<li><a href="https://doc.rero.ch/?ln=fr">Bibliothèque numérique RERO DOC</a></li> | ||
<li><a href="https://sonar.rero.ch/?ln=fr">SONAR - Swiss Open Access Repository</a></li> | ||
<li><a href="https://swisscovery.slsp.ch/discovery/search?vid=41SLSP_NETWORK:VU1_UNION&lang=fr">Swisscovery</a></li> | ||
<li><a href="https://renouvaud.hosted.exlibrisgroup.com/primo-explore/search?vid=41BCULIB_VU2&lang=fr_FR">Renouvaud</a></li> | ||
<li><a href="https://www.helveticat.ch/discovery/search?vid=41SNL_51_INST:helveticat&lang=fr">Helveticat (Bibliothèque nationale suisse)</a></li> | ||
</ul> | ||
{% endif %} | ||
{% if current_i18n.language == 'de' %} | ||
<h5>Nützliche Links</h5> | ||
<ul class="list-unstyled"> | ||
<li><a href="/ill_requests/create/">Fernleihbestellung</a></li> | ||
<li><a href="/help/public/#sinscrire">So registrieren Sie sich</a></li> | ||
</ul> | ||
<h5>Andere Kataloge</h5> | ||
<ul class="list-unstyled"> | ||
<li><a href="https://doc.rero.ch/?ln=de">Digitale Bibliothek RERO DOC</a></li> | ||
<li><a href="https://sonar.rero.ch/?ln=de">SONAR - Swiss Open Access Repository</a></li> | ||
<li><a href="https://swisscovery.slsp.ch/discovery/search?vid=41SLSP_NETWORK:VU1_UNION&lang=de">Swisscovery</a></li> | ||
<li><a href="https://renouvaud.hosted.exlibrisgroup.com/primo-explore/search?vid=41BCULIB_VU2&lang=de_DE">Renouvaud</a></li> | ||
<li><a href="https://www.helveticat.ch/discovery/search?vid=41SNL_51_INST:helveticat&lang=de">Helveticat (Schweizerische Nationalbibliothek)</a></li> | ||
</ul> | ||
{% endif %} | ||
{% if current_i18n.language == 'it' %} | ||
<h5>Link utili</h5> | ||
<ul class="list-unstyled"> | ||
<li><a href="/ill_requests/create/">Richiesta di prestito interbibliotecario</a></li> | ||
<li><a href="/help/public/#sinscrire">Come registrarsi</a></li> | ||
</ul> | ||
<h5>Altri cataloghi</h5> | ||
<ul class="list-unstyled"> | ||
<li><a href="https://doc.rero.ch/?ln=it">Biblioteca digitale RERO DOC</a></li> | ||
<li><a href="https://sonar.rero.ch/?ln=it">SONAR - Swiss Open Access Repository</a></li> | ||
<li><a href="https://swisscovery.slsp.ch/discovery/search?vid=41SLSP_NETWORK:VU1_UNION&lang=fr">Swisscovery</a></li> | ||
<li><a href="https://renouvaud.hosted.exlibrisgroup.com/primo-explore/search?vid=41BCULIB_VU2&lang=fr_FR">Renouvaud</a></li> | ||
<li><a href="https://www.helveticat.ch/discovery/search?vid=41SNL_51_INST:helveticat&lang=it">Helveticat (Biblioteca nazionale svizzera)</a></li> | ||
</ul> | ||
{% endif %} | ||
</section> |
Oops, something went wrong.