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.
35 lines
1.6 KiB
35 lines
1.6 KiB
11 years ago
|
<div class="detail-panel-content" >
|
||
|
<div class="detail-activity">
|
||
11 years ago
|
<ul class="work-package-details-activities-list">
|
||
11 years ago
|
<li ng-repeat="activity in activities"
|
||
11 years ago
|
class="work-package-details-activities-activity"
|
||
11 years ago
|
ng-init="currentDate = (activity.props.createdAt|date:'longDate');
|
||
|
currentNote = 'note-' + ($index+1)">
|
||
11 years ago
|
<h3 class="activity-date"
|
||
|
ng-if="currentDate !== (activities[$index-1].props.createdAt | date:'longDate')"
|
||
|
ng-bind="currentDate"/>
|
||
11 years ago
|
<div class="work-package-details-activities-activity-contents">
|
||
|
<div class="comments-number"><a ng-href="#{{currentNote}}" ng-bind="'#' + ($index+1)"></a>
|
||
|
<!-- Temporarily deactivated comment / edit actions
|
||
|
<div class="comments-icons">
|
||
|
<icon-wrapper icon-name="quote" icon-title="{{I18n.t('js.button_quote')}}"></icon-wrapper>
|
||
|
<icon-wrapper icon-name="edit" icon-title="{{I18n.t('js.button_edit')}}"></icon-wrapper>
|
||
|
</div>
|
||
|
-->
|
||
|
</div>
|
||
11 years ago
|
<img class="avatar" ng-src="{{ activity.props.userAvatar }}" />
|
||
11 years ago
|
<span class="user"><a href name="{{currentNote}}" ng-bind="activity.props.userName"></a></span>
|
||
|
<span class="date">commented on <span ng-bind="activity.props.createdAt | date:'short'"/></span>
|
||
|
<span class="comment">
|
||
|
<ul class="work-package-details-activities-messages">
|
||
|
<li ng-repeat="message in activity.props.messages track by $index">
|
||
|
<span class="message" ng-bind="message"/>
|
||
|
</li>
|
||
|
</ul>
|
||
|
</span>
|
||
11 years ago
|
</div>
|
||
11 years ago
|
</li>
|
||
|
</ul>
|
||
11 years ago
|
</div>
|
||
|
</div>
|