OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/frontend/app/components/wp-panels/activity-panel/activity-panel-overview.dir...

22 lines
861 B

<work-package-comment work-package="workPackage"
activities="activities"
autocomplete-path="{{ autocompletePath }}">
<ul class='work-package-details-activities-list'>
<li ng-repeat="activity in activities | latestItems : order === 'desc' : 3"
class="work-package-details-activities-activity"
ng-init="inf = info(activity, $index);
currentAnchor = inf.anchor;
activityNo = inf.number;
isInitial = in.isInitial;">
<activity-entry work-package="workPackage"
activity="activity"
activity-no="inf.number"
is-initial="inf.isInitial"
autocomplete-path="autocompletePath">
</activity-entry>
</li>
</ul>
</work-package-comment>