mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-21 07:03:49 +00:00
add intensity in teleported toggleFlags
This commit is contained in:
@@ -4,27 +4,33 @@
|
||||
{{ $t('confirm.title') }}
|
||||
<span v-if="accompanyingCourse.step !== 'DRAFT'"
|
||||
class="badge badge-pill badge-primary">
|
||||
{{ $t('course.step.active') }}</span>
|
||||
{{ $t('course.step.active') }}
|
||||
</span>
|
||||
<span v-else class="badge badge-pill badge-secondary">
|
||||
{{ $t('course.step.draft') }}</span>
|
||||
{{ $t('course.step.draft') }}
|
||||
</span>
|
||||
</h3>
|
||||
|
||||
<p v-if="accompanyingCourse.step === 'DRAFT'">
|
||||
{{ $t('confirm.text_draft') }}
|
||||
</p>
|
||||
|
||||
<dl>
|
||||
<dl v-if="accompanyingCourse.closingDate">
|
||||
<dt>{{ $t('course.closing_date') }}</dt>
|
||||
<dd v-if="accompanyingCourse.closingDate">{{ $d(accompanyingCourse.closingDate.datetime, 'short') }}</dd>
|
||||
<dd>{{ $d(accompanyingCourse.closingDate.datetime, 'short') }}</dd>
|
||||
|
||||
<dt>{{ $t('course.closing_motive') }}</dt>
|
||||
<dd v-if="accompanyingCourse.closingMotive">{{ accompanyingCourse.closingMotive.name.fr }}</dd>
|
||||
</dl>
|
||||
|
||||
<button class="sc-button bt-save"
|
||||
@click="confirmCourse">
|
||||
{{ $t('confirm.ok') }}
|
||||
</button>
|
||||
<ul class="record_actions">
|
||||
<li>
|
||||
<button class="sc-button bt-save"
|
||||
@click="confirmCourse">
|
||||
{{ $t('confirm.ok') }}
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
Reference in New Issue
Block a user