Compare commits
No commits in common. "f86d7942390bf914baff1dce9d530e43f43b13a4" and "bb19bca9468b6bb42bb8ba37cdbd103f47c155bc" have entirely different histories.
f86d794239
...
bb19bca946
|
@ -11,4 +11,9 @@ spring.datasource.username=sa
|
||||||
spring.datasource.password=password
|
spring.datasource.password=password
|
||||||
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
|
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
|
||||||
|
|
||||||
|
logging.level.org.hibernate.SQL=DEBUG
|
||||||
|
logging.level.org.hibernate.type.descriptor.sql.BasicBinder=TRACE
|
||||||
|
logging.level.org.springframework.jdbc.core.JdbcTemplate=DEBUG
|
||||||
|
logging.level.org.springframework.jdbc.core.StatementCreatorUtils=TRACE
|
||||||
|
|
||||||
management.endpoints.web.exposure.include=*
|
management.endpoints.web.exposure.include=*
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<span class="bold">Légende</span>
|
<span class="bold">Légende</span>
|
||||||
<ol>
|
<ul>
|
||||||
<!-- <li v-for="axe in axes" :key="axe.identifier" :class="'axe-'+axe.identifier">{{ axe.shortTitle }}</li>-->
|
<!-- <li v-for="axe in axes" :key="axe.identifier" :class="'axe-'+axe.identifier">{{ axe.shortTitle }}</li>-->
|
||||||
<li class="axe-1">Pouvoir d'agir</li>
|
<li class="axe-1">Pouvoir d'agir</li>
|
||||||
<li class="axe-2">Multi-secteur</li>
|
<li class="axe-2">Multi-secteur</li>
|
||||||
|
@ -13,20 +13,38 @@
|
||||||
<li class="axe-8">Finances</li>
|
<li class="axe-8">Finances</li>
|
||||||
<li class="axe-9">Moyens de production</li>
|
<li class="axe-9">Moyens de production</li>
|
||||||
<li class="axe-10">Travail</li>
|
<li class="axe-10">Travail</li>
|
||||||
</ol>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<!--<script lang="ts">-->
|
||||||
|
<!--import { Component, Vue} from "nuxt-property-decorator";-->
|
||||||
|
<!--import {axeStore} from "~/utils/store-accessor";-->
|
||||||
|
<!--import {Axe} from "~/repositories/models/axe.model";-->
|
||||||
|
|
||||||
|
<!--@Component-->
|
||||||
|
<!--export default class Legend extends Vue {-->
|
||||||
|
|
||||||
|
<!-- async created() {-->
|
||||||
|
<!-- await axeStore.getAxes();-->
|
||||||
|
<!-- }-->
|
||||||
|
|
||||||
|
<!-- get axes(): Axe[] {-->
|
||||||
|
<!-- return axeStore.axes;-->
|
||||||
|
<!-- }-->
|
||||||
|
<!--}-->
|
||||||
|
<!--</script>-->
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|
||||||
@import "assets/css/color";
|
@import "assets/css/color";
|
||||||
@import "assets/css/spacing";
|
@import "assets/css/spacing";
|
||||||
|
|
||||||
ol {
|
ul {
|
||||||
|
list-style: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
position: relative;
|
|
||||||
}
|
}
|
||||||
ol li::before {
|
ul li::before {
|
||||||
content: "";
|
content: "";
|
||||||
|
|
||||||
border: 0 solid;
|
border: 0 solid;
|
||||||
|
@ -35,18 +53,16 @@ ol li::before {
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
|
|
||||||
position: absolute;
|
margin-right: $xxx_small;
|
||||||
left: -22px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ol li+li {
|
ul li+li {
|
||||||
border-top: 1px solid #E8E8E8;
|
border-top: 1px solid #E8E8E8;
|
||||||
}
|
}
|
||||||
|
|
||||||
ol li {
|
ul li {
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
padding: $xxx_small 0;
|
padding: $xxx_small 0;
|
||||||
list-style-position: inside;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.axe-1::before { color: #CA8AE8; background: #CA8AE8 }
|
.axe-1::before { color: #CA8AE8; background: #CA8AE8 }
|
||||||
|
|
|
@ -76,16 +76,16 @@ export default class PolarAreaChart extends Vue {
|
||||||
|
|
||||||
readonly chartData = {
|
readonly chartData = {
|
||||||
labels: [
|
labels: [
|
||||||
"1. Pouvoir d'agir",
|
"Pouvoir d'agir",
|
||||||
"2. Multi-secteur",
|
"Multi-secteur",
|
||||||
"3. Local global",
|
"Local global",
|
||||||
"4. Utilité (sociale et écologique)",
|
"Utilité (sociale et écologique)",
|
||||||
"5. Communs",
|
"Communs",
|
||||||
"6. Démocratie",
|
"Démocratie",
|
||||||
"7. Coopération",
|
"Coopération",
|
||||||
"8. Finances",
|
"Finances",
|
||||||
"9. Moyens de production",
|
"Moyens de production",
|
||||||
"10. Travail"
|
"Travail"
|
||||||
],
|
],
|
||||||
datasets: [
|
datasets: [
|
||||||
{
|
{
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
<div>
|
<div>
|
||||||
<Header/>
|
<Header/>
|
||||||
<form id="login_form" class="content login" @submit.prevent="authenticate">
|
<form id="login_form" class="content login" @submit.prevent="authenticate">
|
||||||
<input v-model="username" type="text" required autocomplete="username" placeholder="Nom de l'équipe" aria-label="Nom de l'équipe"/>
|
<input v-model="username" type="text" required placeholder="Nom de l'équipe" aria-label="Nom de l'équipe"/>
|
||||||
<input id="code" v-model="password" type="password" required autocomplete="current-password" placeholder="Code" aria-label="Code"/>
|
<input id="code" v-model="password" type="password" required placeholder="Code" aria-label="Code"/>
|
||||||
<div>
|
<div>
|
||||||
<label>
|
<label>
|
||||||
<input v-model="conditionChecked" type="checkbox" required/>
|
<input v-model="conditionChecked" type="checkbox" required/>
|
||||||
|
|
Loading…
Reference in New Issue