Rajout de la colonne Emballé et modifs de style
This commit is contained in:
2
.env
2
.env
@@ -1,5 +1,5 @@
|
||||
DATABASE = wishlist
|
||||
DATABASE_HOST = db.thecoredev.fr
|
||||
DATABASE_HOST = nas.thecoredev.fr
|
||||
DATABASE_PORT = 3306
|
||||
DATABASE_USER = wishlist
|
||||
DATABASE_PASSWORD = 7/yvv9JA[RomOkLe
|
||||
5
.env.dev
5
.env.dev
@@ -1,5 +0,0 @@
|
||||
DATABASE = wishlist
|
||||
DATABASE_HOST = db.thecoredev.fr
|
||||
DATABASE_PORT = 3306
|
||||
DATABASE_USER = wishlist
|
||||
DATABASE_PASSWORD = 7/yvv9JA[RomOkLe
|
||||
@@ -4,27 +4,53 @@
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/*
|
||||
.tableau li:nth-child(2),
|
||||
.tableau li:nth-child(3),
|
||||
.tableau li:nth-child(4),
|
||||
.tableau li:nth-child(5) {
|
||||
width: 100px;
|
||||
.tableau li {
|
||||
width: 80px;
|
||||
}
|
||||
.tableau li:nth-child(2) {
|
||||
width: 200px;
|
||||
}
|
||||
.tableau li:nth-child(3) {
|
||||
width: 20px;
|
||||
}
|
||||
*/
|
||||
|
||||
.tableau li {
|
||||
flex: auto;
|
||||
list-style-type: none;
|
||||
width: min-content;
|
||||
padding: 8px;
|
||||
padding: 0px 4px;
|
||||
align-self: center;
|
||||
text-align: left;
|
||||
}
|
||||
figure {
|
||||
margin: 4px 0px !important;
|
||||
}
|
||||
|
||||
|
||||
.tableau ul:nth-child(even) {
|
||||
background-color: #f47f7f;
|
||||
}
|
||||
.tableau ul:nth-child(odd) {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.tableau figcaption {
|
||||
font-weight: bold;
|
||||
}
|
||||
.tableau ul:nth-child(even) figcaption{
|
||||
color: white;
|
||||
}
|
||||
.tableau ul:nth-child(odd) figcaption {
|
||||
color: #f47f7f;
|
||||
}
|
||||
|
||||
.tableau ul:nth-child(even) {
|
||||
background-color: aliceblue;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.tableau ul:nth-child(odd) {
|
||||
color: #f47f7f;
|
||||
}
|
||||
|
||||
|
||||
.tableau ul:first-child li {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
@@ -20,14 +20,14 @@
|
||||
<br>
|
||||
|
||||
<div class="tableau">
|
||||
<ul>
|
||||
<ul style="display: none">
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li>Qui va l'offrir ?</li>
|
||||
<li> </li>
|
||||
<li>Qui l'achète ?</li>
|
||||
<li>Statut</li>
|
||||
<li>Noël ou son anniv' ?</li>
|
||||
<li>Emballé ?</li>
|
||||
</ul>
|
||||
{{#each cadeaux}}
|
||||
<ul>
|
||||
@@ -45,24 +45,19 @@
|
||||
<li>
|
||||
<div class="form-check form-switch">
|
||||
{{#if this.achete}}
|
||||
<input class="form-check-input" type="checkbox" id="flexAcheteCheckedDisabled-{{this.id}}" checked disabled>
|
||||
<label class="form-check-label" for="flexAcheteCheckedDisabled-{{this.id}}">Déja acheté</label>
|
||||
<label class="form-check-label">Déja acheté{{#equals this.responsableAchat "Les parents"}}{{#unless this.paye}}<br>A rembourser{{/unless}}{{/equals}}</label>
|
||||
{{else}}
|
||||
<input class="form-check-input" type="checkbox" id="flexAcheteDisabled-{{this.id}}" disabled>
|
||||
<label class="form-check-label" for="flexAcheteDisabled-{{this.id}}">A acheter</label>
|
||||
<label class="form-check-label">A acheter{{#equals this.responsableAchat "Les parents"}}{{#unless this.paye}}<br>A rembourser{{/unless}}{{/equals}}</label>
|
||||
{{/if}}
|
||||
</div>
|
||||
<div class="form-check form-switch">
|
||||
{{#if this.paye}}
|
||||
<input class="form-check-input" type="checkbox" id="flexPayeCheckedDisabled-{{this.id}}" checked disabled>
|
||||
<label class="form-check-label" for="flexPayeCheckedDisabled-{{this.id}}">Déja payé</label>
|
||||
{{else}}
|
||||
<input class="form-check-input" type="checkbox" id="flexPayeDisabled-{{this.id}}" disabled>
|
||||
<label class="form-check-label" for="flexPayeDisabled-{{this.id}}">A payer</label>
|
||||
{{/if}}
|
||||
</div>
|
||||
<li>{{#if this.responsable_achat}}{{this.responsableAchat}}{{/if}}</li>
|
||||
</div>
|
||||
<li>{{#if this.pourNoel}}Noël{{else}}Anniversaire{{/if}}</li>
|
||||
<li>
|
||||
{{#if this.emballe}}
|
||||
<label class="form-check-label">Déja emballé</label>
|
||||
{{else}}
|
||||
<label class="form-check-label">A emballer</label>
|
||||
{{/if}}
|
||||
</li>
|
||||
</ul>
|
||||
{{/each}}
|
||||
</div>
|
||||
|
||||
14
wishlist.js
14
wishlist.js
@@ -34,9 +34,21 @@ app.use(bodyParser.urlencoded({extended: false}));
|
||||
app.use(express.json())
|
||||
|
||||
|
||||
const isEqual = function(a, b, opts) {
|
||||
if (a == b) {
|
||||
return opts.fn(this)
|
||||
} else {
|
||||
return opts.inverse(this)
|
||||
}
|
||||
}
|
||||
|
||||
var hbs = require('hbs');
|
||||
hbs.registerHelper('equals', isEqual);
|
||||
|
||||
|
||||
app.get("/", (req, res) => {
|
||||
|
||||
db.query('SELECT c.id as "id", c.libelle as "libelle", c.prix, c.photo as "photo", c.lien, p.prenom as "acheteur", c.achete as "achete", c.paye as "paye", p2.prenom as "responsableAchat", c.pour_noel as "pourNoel" FROM cadeau c LEFT OUTER JOIN participations pc on pc.cadeau = c.id LEFT OUTER JOIN participant p on p.id = pc.offrant LEFT OUTER JOIN participant p2 on p2.id = pc.responsable_achat ORDER BY c.prix', async (error, resultCadeaux) => {
|
||||
db.query('SELECT c.id as "id", c.libelle as "libelle", c.prix, c.photo as "photo", c.lien, p.prenom as "acheteur", c.achete as "achete", c.paye as "paye", p2.prenom as "responsableAchat", c.pour_noel as "pourNoel", c.emballe as "emballe" FROM cadeau c LEFT OUTER JOIN participations pc on pc.cadeau = c.id LEFT OUTER JOIN participant p on p.id = pc.offrant LEFT OUTER JOIN participant p2 on p2.id = pc.responsable_achat ORDER BY c.prix', async (error, resultCadeaux) => {
|
||||
let message;
|
||||
|
||||
if(error){
|
||||
|
||||
Reference in New Issue
Block a user