2018-12-19 18:36:45 +00:00
|
|
|
<div class="document-meta">
|
|
|
|
{{#link-to 'folder.index' space.id space.slug class="no-print"}}
|
|
|
|
{{ui/ui-button light=true color=constants.Color.Yellow uppercase=false
|
|
|
|
icon=constants.Icon.ArrowLeft label=space.name}}
|
|
|
|
{{/link-to}}
|
2017-12-04 17:25:33 +00:00
|
|
|
|
2018-12-19 18:36:45 +00:00
|
|
|
{{ui/ui-spacer size=300}}
|
2018-01-22 10:31:03 +00:00
|
|
|
|
2018-12-19 18:36:45 +00:00
|
|
|
<div class="title">CATEGORY / TAG</div>
|
|
|
|
{{#each selectedCategories as |cat|}}
|
|
|
|
<div class="meta-label">
|
|
|
|
<i class="dicon {{constants.Icon.Category}}"/>
|
|
|
|
{{cat.category}}
|
|
|
|
{{#attach-tooltip showDelay=1000}}Category{{/attach-tooltip}}
|
|
|
|
</div>
|
|
|
|
{{/each}}
|
|
|
|
{{#each tagz as |t|}}
|
|
|
|
<div class="meta-label">
|
|
|
|
<i class="dicon {{constants.Icon.Tag}}"/>
|
|
|
|
{{t}}
|
|
|
|
{{#attach-tooltip showDelay=1000}}Tag{{/attach-tooltip}}
|
|
|
|
</div>
|
|
|
|
{{/each}}
|
2018-01-22 10:31:03 +00:00
|
|
|
|
2018-12-19 18:36:45 +00:00
|
|
|
{{ui/ui-spacer size=200}}
|
2018-01-22 10:31:03 +00:00
|
|
|
|
2018-12-19 18:36:45 +00:00
|
|
|
<div class="title">STATUS</div>
|
|
|
|
<div class="{{if (eq document.lifecycle constants.Lifecycle.Draft) "label-draft"}}
|
|
|
|
{{if (eq document.lifecycle constants.Lifecycle.Live) "label-live"}}
|
|
|
|
{{if (eq document.lifecycle constants.Lifecycle.Archived) "label-archived"}}">
|
|
|
|
{{document.lifecycleLabel}}
|
|
|
|
{{#attach-tooltip showDelay=1000}}Lifecycle: Draft · Live · Archived{{/attach-tooltip}}
|
2018-06-15 14:25:05 +01:00
|
|
|
</div>
|
2018-12-19 18:36:45 +00:00
|
|
|
<div class="label-approval">
|
|
|
|
{{#if (eq document.protection constants.ProtectionType.None)}}OPEN{{/if}}
|
|
|
|
{{#if (eq document.protection constants.ProtectionType.Review)}}PROTECTED{{/if}}
|
|
|
|
{{#if (eq document.protection constants.ProtectionType.Lock)}}LOCKED{{/if}}
|
|
|
|
{{#attach-tooltip showDelay=1000}}Change Control: Open · Protected · Locked{{/attach-tooltip}}
|
2017-12-04 17:25:33 +00:00
|
|
|
</div>
|
2018-12-19 18:36:45 +00:00
|
|
|
</div>
|