19 lines
727 B
Plaintext
19 lines
727 B
Plaintext
include _entryState
|
|
|
|
mixin editorialFeatures(entry)
|
|
if settings.editorialFeatures
|
|
.editorial-features
|
|
if currentApi.id === 'cpa' && (entry.draft || entry.pendingChanges)
|
|
.editorial-features__item
|
|
+entryState(entry)
|
|
.editorial-features__item
|
|
a.editorial-features__text(
|
|
href=`https://app.contentful.com/spaces/${settings.space}/entries/${entry.sys.id}`
|
|
target='_blank'
|
|
rel='noopener'
|
|
) Edit in the web app
|
|
.editorial-features__hint-wrapper
|
|
svg.editorial-features__hint-icon
|
|
use(xlink:href='/icons/icons.svg#info')
|
|
.editorial-features__hint-message #{translate('editorialFeaturesHint', currentLocale.code)}
|