mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 13:54:23 +00:00
requestor styling fixed + button added. problem with removing requestor though...
This commit is contained in:
parent
badf632a8a
commit
8bcd69c5ec
@ -3,14 +3,13 @@
|
|||||||
|
|
||||||
<h2><a name="section-40"></a>{{ $t('requestor.title') }}</h2>
|
<h2><a name="section-40"></a>{{ $t('requestor.title') }}</h2>
|
||||||
|
|
||||||
<div v-if="accompanyingCourse.requestor" class="flex-table">
|
<div v-if="accompanyingCourse.requestor" class="flex-bloc row row-cols-1 g-0">
|
||||||
|
|
||||||
<label>
|
<label>
|
||||||
<input type="checkbox" v-model="isAnonymous" class="me-2" />
|
<input type="checkbox" v-model="isAnonymous" class="me-2" />
|
||||||
{{ $t('requestor.is_anonymous') }}
|
{{ $t('requestor.is_anonymous') }}
|
||||||
</label>
|
</label>
|
||||||
|
|
||||||
<!-- <div class="flex-bloc row row-cols-1 g-0"> -->
|
|
||||||
<third-party-render-box v-if="accompanyingCourse.requestor.type == 'thirdparty'"
|
<third-party-render-box v-if="accompanyingCourse.requestor.type == 'thirdparty'"
|
||||||
:thirdparty="accompanyingCourse.requestor"
|
:thirdparty="accompanyingCourse.requestor"
|
||||||
:options="{
|
:options="{
|
||||||
@ -20,7 +19,14 @@
|
|||||||
addInfo: true,
|
addInfo: true,
|
||||||
hLevel: 3
|
hLevel: 3
|
||||||
}"
|
}"
|
||||||
></third-party-render-box>
|
>
|
||||||
|
<template v-slot:record-actions>
|
||||||
|
<ul class="record_actions">
|
||||||
|
<li><on-the-fly :type="accompanyingCourse.requestor.type" :id="accompanyingCourse.requestor.id" action="show"></on-the-fly></li>
|
||||||
|
</ul>
|
||||||
|
</template>
|
||||||
|
</third-party-render-box>
|
||||||
|
|
||||||
<person-render-box v-else-if="accompanyingCourse.requestor.type == 'person'"
|
<person-render-box v-else-if="accompanyingCourse.requestor.type == 'person'"
|
||||||
:person="accompanyingCourse.requestor"
|
:person="accompanyingCourse.requestor"
|
||||||
:options="{
|
:options="{
|
||||||
@ -31,9 +37,15 @@
|
|||||||
addInfo: true,
|
addInfo: true,
|
||||||
hLevel: 3
|
hLevel: 3
|
||||||
}"
|
}"
|
||||||
></person-render-box>
|
>
|
||||||
|
<template v-slot:record-actions>
|
||||||
|
<ul class="record_actions">
|
||||||
|
<li><on-the-fly :type="accompanyingCourse.requestor.type" :id="accompanyingCourse.requestor.id" action="show"></on-the-fly></li>
|
||||||
|
</ul>
|
||||||
|
</template>
|
||||||
|
</person-render-box>
|
||||||
|
|
||||||
<!-- </div> -->
|
|
||||||
<!-- <h4>
|
<!-- <h4>
|
||||||
<span class="badge rounded-pill bg-secondary">{{ accompanyingCourse.requestor.type }}</span>
|
<span class="badge rounded-pill bg-secondary">{{ accompanyingCourse.requestor.type }}</span>
|
||||||
{{ accompanyingCourse.requestor.text }}
|
{{ accompanyingCourse.requestor.text }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user