kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
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.
29 lines
1.2 KiB
29 lines
1.2 KiB
9 years ago
|
<work-package-comment work-package="workPackage"
|
||
9 years ago
|
activities="activities"
|
||
9 years ago
|
autocomplete-path="{{ autocompletePath }}">
|
||
9 years ago
|
|
||
9 years ago
|
<div class="detail-activity">
|
||
|
<ul class="work-package-details-activities-list">
|
||
|
<li ng-repeat="activity in activities"
|
||
|
class="work-package-details-activities-activity"
|
||
|
ng-init="activityNo = activitiesSortedInDescendingOrder && activities.length - $index || $index + 1;
|
||
9 years ago
|
isInitial = isInitialActivity(activities, activity, activityNo, activitiesSortedInDescendingOrder);
|
||
9 years ago
|
currentDate = (activity.props.createdAt|date:'longDate');
|
||
|
currentAnchor = 'note-' + activityNo">
|
||
9 years ago
|
|
||
9 years ago
|
<h3 class="activity-date"
|
||
|
ng-if="currentDate !== (activities[$index-1].props.createdAt | date:'longDate')"
|
||
|
ng-bind="currentDate"/>
|
||
9 years ago
|
|
||
9 years ago
|
<activity-entry work-package="workPackage"
|
||
9 years ago
|
activity="activity"
|
||
|
activity-no="activityNo"
|
||
|
is-initial="isInitial"
|
||
|
autocomplete-path="autocompletePath">
|
||
9 years ago
|
</activity-entry>
|
||
|
</div>
|
||
|
</li>
|
||
|
</ul>
|
||
|
</div>
|
||
9 years ago
|
</work-package-comment>
|