mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-11-09 16:01:30 +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.by') }} {{ this.formResponse.submitted_by_full_name }}
|
||||
</div>
|
||||
<div v-else class="ml-auto text-right text-xs text-sn-grey-700">
|
||||
{{ i18n.t('forms.response.not_submitted') }}
|
||||
</div>
|
||||
</div>
|
||||
<Field v-for="field in formFields" :disabled="formDisabled" ref="formFields" :key="field.id" :field="field" :formResponse="formResponse" @save="saveValue" />
|
||||
<div>
|
||||
|
|
|
|||
|
|
@ -1141,6 +1141,7 @@ en:
|
|||
response:
|
||||
submit: 'Submit form'
|
||||
submitted_on: 'Submitted on'
|
||||
not_submitted: 'Not submitted yet'
|
||||
by: 'by'
|
||||
label_templates:
|
||||
types:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue