2018-05-23 15:57:30 +01:00
|
|
|
<div class="view-spaces">
|
2018-12-12 13:35:16 +00:00
|
|
|
<ul class="list">
|
|
|
|
{{#each spaces as |space|}}
|
|
|
|
{{#link-to "folder.index" space.id space.slug}}
|
|
|
|
<li class="item">
|
|
|
|
<div class="info">
|
2019-01-04 16:33:30 +00:00
|
|
|
<div class="name">
|
|
|
|
{{#if space.icon}}
|
|
|
|
<div class="icon">
|
|
|
|
{{ui/ui-icon-meta icon=space.icon}}
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
{{space.name}}
|
|
|
|
</div>
|
|
|
|
<div class="desc">{{space.desc}} </div>
|
2018-12-12 13:35:16 +00:00
|
|
|
<div class="meta">
|
2019-01-04 16:33:30 +00:00
|
|
|
{{!-- {{#if (eq space.spaceType constants.SpaceType.Public)}}
|
2018-12-12 13:35:16 +00:00
|
|
|
<i class={{concat "dicon " constants.Icon.World}}>
|
|
|
|
{{#attach-tooltip showDelay=1000}}Public space{{/attach-tooltip}}
|
|
|
|
</i>
|
|
|
|
{{/if}}
|
|
|
|
{{#if (eq space.spaceType constants.SpaceType.Protected)}}
|
|
|
|
<i class={{concat "dicon " constants.Icon.People}}>
|
|
|
|
{{#attach-tooltip showDelay=1000}}Protected space{{/attach-tooltip}}
|
|
|
|
</i>
|
|
|
|
{{/if}}
|
|
|
|
{{#if (eq space.spaceType constants.SpaceType.Private)}}
|
|
|
|
<i class={{concat "dicon " constants.Icon.Person}}>
|
|
|
|
{{#attach-tooltip showDelay=1000}}Personal space{{/attach-tooltip}}
|
|
|
|
</i>
|
2019-01-04 16:33:30 +00:00
|
|
|
{{/if}} --}}
|
|
|
|
{{#if space.labelId}}
|
|
|
|
{{spaces/space-label labels=labels labelId=space.labelId}}
|
2018-12-12 13:35:16 +00:00
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="stats">
|
|
|
|
<div class="stat">
|
2019-01-04 16:33:30 +00:00
|
|
|
<div class="number">{{space.countContent}}</div>
|
2018-12-12 13:35:16 +00:00
|
|
|
<div class="label">items</div>
|
|
|
|
</div>
|
|
|
|
<div class="stat">
|
2019-01-04 16:33:30 +00:00
|
|
|
<div class="number">{{space.countCategory}}</div>
|
2018-12-12 13:35:16 +00:00
|
|
|
<div class="label">categories</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
2018-05-23 15:57:30 +01:00
|
|
|
{{/link-to}}
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
2017-11-17 11:31:54 +00:00
|
|
|
</div>
|