mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
some todo's added in comment + most href's made dynamic
This commit is contained in:
parent
34e1a9b748
commit
42b9e25403
@ -10,9 +10,11 @@
|
|||||||
<div class="entity-label">
|
<div class="entity-label">
|
||||||
|
|
||||||
<!-- NAME TAG -->
|
<!-- NAME TAG -->
|
||||||
|
<!-- todo: make h class dynamic -->
|
||||||
<div class="denomination h3">
|
<div class="denomination h3">
|
||||||
|
|
||||||
<!-- NAME IF ADD LINK AND PERMISSION GRANTED -->
|
<!-- NAME IF ADD LINK AND PERMISSION GRANTED -->
|
||||||
|
<!-- todo: change href -->
|
||||||
<a v-if="this.options.addLink == true" href="#">
|
<a v-if="this.options.addLink == true" href="#">
|
||||||
<span class="firstname">{{ person.firstName }}</span>
|
<span class="firstname">{{ person.firstName }}</span>
|
||||||
<span class="lastname">{{ person.lastName }}</span>
|
<span class="lastname">{{ person.lastName }}</span>
|
||||||
@ -58,7 +60,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- END LABEL -->
|
<!-- END LABEL -->
|
||||||
|
|
||||||
<!-- EXTRA INFO AND ACTIONS-->
|
<!-- CONTACT INFO AND ACTIONS-->
|
||||||
<div class="item-col">
|
<div class="item-col">
|
||||||
<ul class="list-content fa-ul">
|
<ul class="list-content fa-ul">
|
||||||
<!-- ADDRESS -->
|
<!-- ADDRESS -->
|
||||||
@ -67,14 +69,14 @@
|
|||||||
<show-address :address="person.current_household_address" :multiline="false"></show-address>
|
<show-address :address="person.current_household_address" :multiline="false"></show-address>
|
||||||
</li>
|
</li>
|
||||||
<!-- PHONENUMBER -->
|
<!-- PHONENUMBER -->
|
||||||
<!-- todo: change href for phonenumbers -->
|
<!-- todo: change href for phonenumbers and format phone number? -->
|
||||||
<li v-if="this.person.mobilenumber">
|
<li v-if="this.person.mobilenumber">
|
||||||
<i class="fa fa-li fa-mobile"></i>
|
<i class="fa fa-li fa-mobile"></i>
|
||||||
<a href="#">{{ person.mobilenumber }}</a>
|
<a :href="'tel: ' + person.mobilenumber">{{ person.mobilenumber }}</a>
|
||||||
</li>
|
</li>
|
||||||
<li v-else-if="this.person.phonenumber">
|
<li v-else-if="this.person.phonenumber">
|
||||||
<i class="fa fa-li fa-phone"></i>
|
<i class="fa fa-li fa-phone"></i>
|
||||||
<a href="#">{{ person.phonenumber }}</a>
|
<a :href="'tel: ' + person.phonenumber">{{ person.phonenumber }}</a>
|
||||||
</li>
|
</li>
|
||||||
<span v-else class="chill-no-data-statement">{{ $t('renderbox.no_information') }}</span>
|
<span v-else class="chill-no-data-statement">{{ $t('renderbox.no_information') }}</span>
|
||||||
|
|
||||||
@ -85,7 +87,7 @@
|
|||||||
<slot name="record-actions"></slot>
|
<slot name="record-actions"></slot>
|
||||||
<!-- END ACTIONS -->
|
<!-- END ACTIONS -->
|
||||||
</div>
|
</div>
|
||||||
<!-- END EXTRA INFO AND ACTIONS -->
|
<!-- END CONTACT INFO AND ACTIONS -->
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user