Compare commits
No commits in common. "f10f01024598886f88ef741ee0bc80446c83088d" and "fc82ffc481e77308eac148d7588c35a70944b377" have entirely different histories.
f10f010245
...
fc82ffc481
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,3 +1 @@
|
|||||||
/target
|
/target
|
||||||
|
|
||||||
.DS_Store
|
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 2.7 KiB |
@ -28,17 +28,14 @@ user:
|
|||||||
owner_books: Livres possédés
|
owner_books: Livres possédés
|
||||||
borrowed_books: Livres empruntés
|
borrowed_books: Livres empruntés
|
||||||
index:
|
index:
|
||||||
title_tag: Liste des utilisateur.ice.s | BookForge
|
title: Tous les utilisateurs
|
||||||
title: Tous les utilisateur.ice.s
|
button: Ajouter un utilisateur
|
||||||
button: Ajouter un.e utilisateur.ice
|
|
||||||
edit:
|
edit:
|
||||||
title_tag: Modifier l'utilisateur.ice | BookForge
|
|
||||||
title: Modifier
|
title: Modifier
|
||||||
button: Modifier l'utilisateur.ice
|
button: Modifier l'utilisateur
|
||||||
new:
|
new:
|
||||||
title_tag: Nouvel utilisateur.ice | BookForge
|
title: Nouvel utilisateur
|
||||||
title: Nouvel utilisateur.ice
|
button: Créer l'utilisateur
|
||||||
button: Créer l'utilisateur.ice
|
|
||||||
book:
|
book:
|
||||||
attributes:
|
attributes:
|
||||||
title: Titre
|
title: Titre
|
||||||
@ -48,30 +45,24 @@ book:
|
|||||||
current_holder: Détenteur.ice actuel.le
|
current_holder: Détenteur.ice actuel.le
|
||||||
comment: Commentaire
|
comment: Commentaire
|
||||||
index:
|
index:
|
||||||
title_tag: Liste des livres | BookForge
|
|
||||||
title: Tous les livres
|
title: Tous les livres
|
||||||
new:
|
new:
|
||||||
title_tag: Nouveau livre | BookForge
|
|
||||||
title: Nouveau livre
|
title: Nouveau livre
|
||||||
button: Créer le livre
|
button: Créer le livre
|
||||||
button_short: Ajouter un livre
|
button_short: Ajouter un livre
|
||||||
edit:
|
edit:
|
||||||
title_tag: Modifier le livre | BookForge
|
|
||||||
title: Modifier le livre
|
title: Modifier le livre
|
||||||
button: Modifier le livre
|
button: Modifier le livre
|
||||||
show:
|
show:
|
||||||
title_tag: Details | BookForge
|
|
||||||
book_details: Détails du livre
|
book_details: Détails du livre
|
||||||
user_details: Détails de l'utilisateur.ice
|
user_details: Détails de l'utilisateur
|
||||||
more_informations: Plus d'informations
|
more_informations: Plus d'informations
|
||||||
footer:
|
footer:
|
||||||
message: Fait avec amour & Nique les fachos !
|
message: Fait avec amour & Nique les fachos !
|
||||||
error:
|
error:
|
||||||
error_404:
|
error_404:
|
||||||
title_tag: Erreur 404 | BookForge
|
|
||||||
title: Oups ! Cette page n'existe pas
|
title: Oups ! Cette page n'existe pas
|
||||||
subtitle: 404 NOT FOUND
|
subtitle: 404 NOT FOUND
|
||||||
button: Retour à l'accueil
|
button: Retour à l'accueil
|
||||||
generic:
|
generic:
|
||||||
title_tag: Erreur | BookForge
|
|
||||||
title: Oups ! Une erreur s'est produite
|
title: Oups ! Une erreur s'est produite
|
||||||
|
|||||||
@ -1,9 +1,4 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
{% block title %}
|
|
||||||
{{ t!("error.error_404.title_tag") }}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
<div class="mt-4 text-center">
|
<div class="mt-4 text-center">
|
||||||
<h1>{{ t!("error.error_404.title") }}</h1>
|
<h1>{{ t!("error.error_404.title") }}</h1>
|
||||||
|
|||||||
@ -6,7 +6,6 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="/assets/css/bootstrap.css">
|
<link rel="stylesheet" href="/assets/css/bootstrap.css">
|
||||||
<link rel="stylesheet" href="/assets/css/main.css">
|
<link rel="stylesheet" href="/assets/css/main.css">
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon.png">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="/assets/css/fork-awesome.min.css">
|
<link rel="stylesheet" href="/assets/css/fork-awesome.min.css">
|
||||||
<link rel="icon" type="image/x-icon" href="/assets/images/favicon.ico">
|
<link rel="icon" type="image/x-icon" href="/assets/images/favicon.ico">
|
||||||
|
|||||||
@ -2,10 +2,6 @@
|
|||||||
{% import "components/typography.html" as typography %}
|
{% import "components/typography.html" as typography %}
|
||||||
{% import "components/cards.html" as cards %}
|
{% import "components/cards.html" as cards %}
|
||||||
|
|
||||||
{% block title %}
|
|
||||||
{{ t!("book.edit.title_tag") }}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
{{ typography::heading(t!("book.edit.title")) }}
|
{{ typography::heading(t!("book.edit.title")) }}
|
||||||
|
|
||||||
|
|||||||
@ -3,10 +3,6 @@
|
|||||||
{% import "components/cards.html" as cards %}
|
{% import "components/cards.html" as cards %}
|
||||||
{% import "components/inputs.html" as form_helpers %}
|
{% import "components/inputs.html" as form_helpers %}
|
||||||
|
|
||||||
{% block title %}
|
|
||||||
{{ t!("book.new.title_tag") }}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
{{ typography::heading(t!("book.new.title")) }}
|
{{ typography::heading(t!("book.new.title")) }}
|
||||||
|
|
||||||
|
|||||||
@ -4,16 +4,12 @@
|
|||||||
{% import "components/fields.html" as fields %}
|
{% import "components/fields.html" as fields %}
|
||||||
{% import "components/cards.html" as cards %}
|
{% import "components/cards.html" as cards %}
|
||||||
|
|
||||||
{% block title %}
|
|
||||||
{{ t!("book.show.title_tag") }}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
{{ typography::book_heading(book.title, book, show = false) }}
|
{{ typography::book_heading(book.title, book, show = false) }}
|
||||||
|
|
||||||
{% call cards::card() %}
|
{% call cards::card() %}
|
||||||
<div class="">
|
<div class="mt-4">
|
||||||
<h5 class="fw-bold text-decoration-underline">{{ t!("book.show.book_details") }}</h5>
|
<h5 class="mt-4 fw-bold">{{ t!("book.show.book_details") }}</h5>
|
||||||
{{ fields::field(t!("book.attributes.title"), book.title) }}
|
{{ fields::field(t!("book.attributes.title"), book.title) }}
|
||||||
{{ fields::field(t!("book.attributes.authors"), book.authors) }}
|
{{ fields::field(t!("book.attributes.authors"), book.authors) }}
|
||||||
|
|
||||||
@ -24,7 +20,7 @@
|
|||||||
{{ fields::field(t!("book.attributes.description"), "-") }}
|
{{ fields::field(t!("book.attributes.description"), "-") }}
|
||||||
{% endmatch %}
|
{% endmatch %}
|
||||||
|
|
||||||
<h5 class="mt-50px fw-bold text-decoration-underline">{{ t!("book.show.user_details") }}</h5>
|
<h5 class="mt-50px fw-bold">{{ t!("book.show.user_details") }}</h5>
|
||||||
{{ fields::field(t!("book.attributes.owner"), owner.name) }}
|
{{ fields::field(t!("book.attributes.owner"), owner.name) }}
|
||||||
|
|
||||||
{% match current_holder %}
|
{% match current_holder %}
|
||||||
@ -35,7 +31,7 @@
|
|||||||
{% endmatch %}
|
{% endmatch %}
|
||||||
|
|
||||||
|
|
||||||
<h5 class="mt-50px fw-bold text-decoration-underline">{{ t!("book.show.more_informations") }}</h5>
|
<h5 class="mt-50px fw-bold">{{ t!("book.show.more_informations") }}</h5>
|
||||||
{% match book.comment %}
|
{% match book.comment %}
|
||||||
{% when Some with (comment) %}
|
{% when Some with (comment) %}
|
||||||
{{ fields::field(t!("book.attributes.comment"), comment) }}
|
{{ fields::field(t!("book.attributes.comment"), comment) }}
|
||||||
|
|||||||
@ -1,9 +1,4 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
{% block title %}
|
|
||||||
{{ t!("error.generic.title_tag") }}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
<div class="mt-4 text-center">
|
<div class="mt-4 text-center">
|
||||||
<h1>{{ t!("error.generic.title") }}</h1>
|
<h1>{{ t!("error.generic.title") }}</h1>
|
||||||
|
|||||||
@ -3,10 +3,6 @@
|
|||||||
{% import "components/dropdown.html" as dropdown %}
|
{% import "components/dropdown.html" as dropdown %}
|
||||||
{% import "components/cards.html" as cards %}
|
{% import "components/cards.html" as cards %}
|
||||||
|
|
||||||
{% block title %}
|
|
||||||
{{ t!("book.index.title_tag") }}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
{% call typography::heading(t!("book.index.title")) %}
|
{% call typography::heading(t!("book.index.title")) %}
|
||||||
<a href="/books/download_csv?{{ base_query }}" class="btn btn-info">
|
<a href="/books/download_csv?{{ base_query }}" class="btn btn-info">
|
||||||
|
|||||||
@ -1,11 +1,7 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
{% import "components/typography.html" as typography %}
|
{% import "components/typography.html" as typography %}
|
||||||
{% import "components/cards.html" as cards %}
|
{% import "components/cards.html" as cards %}
|
||||||
{% import "components/inputs.html" as form_helpers %}
|
o{% import "components/inputs.html" as form_helpers %}
|
||||||
|
|
||||||
{% block title %}
|
|
||||||
{{ t!("book.edit.title_tag") }}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
{{ typography::heading(t!("user.edit.title")) }}
|
{{ typography::heading(t!("user.edit.title")) }}
|
||||||
|
|||||||
@ -4,10 +4,6 @@
|
|||||||
{% import "components/cards.html" as cards %}
|
{% import "components/cards.html" as cards %}
|
||||||
{% import "components/inputs.html" as form_helpers %}
|
{% import "components/inputs.html" as form_helpers %}
|
||||||
|
|
||||||
{% block title %}
|
|
||||||
{{ t!("user.index.title_tag") }}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
{% call typography::heading(t!("user.index.title")) %}
|
{% call typography::heading(t!("user.index.title")) %}
|
||||||
<a class="btn-success btn" href="/users/new">{{ t!("user.index.button") }}</a>
|
<a class="btn-success btn" href="/users/new">{{ t!("user.index.button") }}</a>
|
||||||
|
|||||||
@ -1,11 +1,7 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
{% import "components/typography.html" as typography %}
|
{% import "components/typography.html" as typography %}
|
||||||
{% import "components/cards.html" as cards %}
|
{% import "components/cards.html" as cards %}
|
||||||
{% import "components/inputs.html" as form_helpers %}
|
o{% import "components/inputs.html" as form_helpers %}
|
||||||
|
|
||||||
{% block title %}
|
|
||||||
{{ t!("user.new.title_tag") }}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
{{ typography::heading(t!("user.new.title")) }}
|
{{ typography::heading(t!("user.new.title")) }}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user