2016-01-08 21:31:58 +01:00
|
|
|
<div ng-controller="SlideItemListCtrl" class="content scrollcontent">
|
2016-02-24 21:01:52 +01:00
|
|
|
<h1 ng-if="!element.id" translate>Agenda</h1>
|
|
|
|
<h1 ng-if="element.id">{{ rootItem.getTitle() }}</h1>
|
2015-06-25 10:19:38 +02:00
|
|
|
|
2016-01-09 10:34:34 +01:00
|
|
|
<div class="agendalist">
|
|
|
|
<!-- item type: AGENDA_ITEM = 1, HIDDEN_ITEM = 2 -->
|
2016-02-17 13:46:20 +01:00
|
|
|
<p ng-repeat="item in items | filter: {type: 1}"
|
2016-02-24 21:01:52 +01:00
|
|
|
ng-class="{mainitem: item.parentCount == 0, subitem: item.parentCount != 0, done: item.closed}">
|
2016-02-17 13:46:20 +01:00
|
|
|
<span ng-repeat="n in [].constructor(item.parentCount) track by $index"> </span>
|
2016-01-25 21:22:22 +01:00
|
|
|
{{ item.getListViewTitle() }}
|
2016-01-09 10:34:34 +01:00
|
|
|
</p>
|
|
|
|
</div>
|
2015-06-25 10:19:38 +02:00
|
|
|
</div>
|