mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-11-11 00:41:41 +08:00
Add not submitted label [SCI-1434]
This commit is contained in:
parent
cd8ec80b8a
commit
d41a399cac
2 changed files with 4 additions and 0 deletions
|
|
@ -20,6 +20,9 @@
|
||||||
{{ i18n.t('forms.response.submitted_on') }} {{ this.formResponse.submitted_at }}<br>
|
{{ i18n.t('forms.response.submitted_on') }} {{ this.formResponse.submitted_at }}<br>
|
||||||
{{ i18n.t('forms.response.by') }} {{ this.formResponse.submitted_by_full_name }}
|
{{ i18n.t('forms.response.by') }} {{ this.formResponse.submitted_by_full_name }}
|
||||||
</div>
|
</div>
|
||||||
|
<div v-else class="ml-auto text-right text-xs text-sn-grey-700">
|
||||||
|
{{ i18n.t('forms.response.not_submitted') }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<Field v-for="field in formFields" :disabled="formDisabled" ref="formFields" :key="field.id" :field="field" :formResponse="formResponse" @save="saveValue" />
|
<Field v-for="field in formFields" :disabled="formDisabled" ref="formFields" :key="field.id" :field="field" :formResponse="formResponse" @save="saveValue" />
|
||||||
<div>
|
<div>
|
||||||
|
|
|
||||||
|
|
@ -1141,6 +1141,7 @@ en:
|
||||||
response:
|
response:
|
||||||
submit: 'Submit form'
|
submit: 'Submit form'
|
||||||
submitted_on: 'Submitted on'
|
submitted_on: 'Submitted on'
|
||||||
|
not_submitted: 'Not submitted yet'
|
||||||
by: 'by'
|
by: 'by'
|
||||||
label_templates:
|
label_templates:
|
||||||
types:
|
types:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue