entite source liens display fix #2200
This commit is contained in:
parent
759376983a
commit
c258593341
@ -210,6 +210,15 @@ body{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
section.entite{
|
||||||
|
.sources{
|
||||||
|
.liens{
|
||||||
|
a{
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
// PUISSANCE D'AGIR
|
// PUISSANCE D'AGIR
|
||||||
ul.besoins{
|
ul.besoins{
|
||||||
li.besoin{
|
li.besoin{
|
||||||
|
@ -41,6 +41,8 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
<section class="entite">
|
||||||
|
|
||||||
<section class="action">
|
<section class="action">
|
||||||
<label v-if="ct_entite">{{ ct_entite.field_action.description }}</label>
|
<label v-if="ct_entite">{{ ct_entite.field_action.description }}</label>
|
||||||
<p>{{ entite.action }}</p>
|
<p>{{ entite.action }}</p>
|
||||||
@ -108,12 +110,17 @@ export default {
|
|||||||
<section
|
<section
|
||||||
v-if="source.liens.length"
|
v-if="source.liens.length"
|
||||||
class="liens multiple">
|
class="liens multiple">
|
||||||
<a
|
<ul>
|
||||||
|
<li
|
||||||
v-for="(lien,l) in source.liens"
|
v-for="(lien,l) in source.liens"
|
||||||
:key="l"
|
:key="l">
|
||||||
|
<a
|
||||||
:href="lien.url">
|
:href="lien.url">
|
||||||
{{ lien.title }}
|
{{ lien.title }}
|
||||||
</a>
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
||||||
@ -131,6 +138,7 @@ export default {
|
|||||||
|
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="css">
|
<style lang="css">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user