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/app/views/timelog/_list.html.erb

70 lines
3.7 KiB

<%#-- copyright
OpenProject is a project management system.
Copyright (C) 2012-2014 the OpenProject Foundation (OPF)
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License version 3.
OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
Copyright (C) 2006-2013 Jean-Philippe Lang
Copyright (C) 2010-2013 the ChiliProject Team
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
See doc/COPYRIGHT.rdoc for more details.
++#%>
<table class="list time-entries">
<thead>
<tr>
<th><sort-link sort-attr="spent_on" sort-func="loadTimeEntries()"><%= TimeEntry.human_attribute_name(:spent_on) %></sort-link></th>
<th><sort-link sort-attr="user" sort-func="loadTimeEntries()"><%= TimeEntry.human_attribute_name(:user) %></sort-link></th>
<th><sort-link sort-attr="activity" sort-func="loadTimeEntries()"><%= TimeEntry.human_attribute_name(:activity) %></sort-link></th>
<th><sort-link sort-attr="project" sort-func="loadTimeEntries()"><%= TimeEntry.human_attribute_name(:project) %></sort-link></th>
<th><sort-link sort-attr="work_package" sort-func="loadTimeEntries()"><%= TimeEntry.human_attribute_name(:issue) %></sort-link></th>
<th><%= TimeEntry.human_attribute_name(:comments) %></th>
<th><sort-link sort-attr="hours" sort-func="loadTimeEntries()"><%= TimeEntry.human_attribute_name(:hours) %></sort-link></th>
<th></th>
</tr>
</thead>
<tbody>
<tr class="time-entry" ng-repeat="timeEntry in timeEntries" ng-class-even="'even'" ng-class-odd="'odd'">
<td class="spent_on"><date date-value="timeEntry.spent_on"></date></td>
<td class="user"><a ng-href="{{PathHelper.userPath(timeEntry.user.id)}}">{{timeEntry.user.name}}</a></td>
<td class="activity">{{timeEntry.activity.name}}</td>
<td class="project"><a ng-href="{{PathHelper.projectPath(timeEntry.project.id)}}">{{timeEntry.project.name}}</a></td>
<td class="subject">
<div ng-if="timeEntry.work_package !== undefined" style="width:150px;overflow:hidden;text-overflow:ellipsis;">
<a ng-if="timeEntry.work_package.isVisible == true" ng-href="{{PathHelper.workPackagePath(timeEntry.work_package.id)}}">{{timeEntry.work_package.subject}}</a>
<span ng-if="timeEntry.work_package.isVisible == false">#{{timeEntry.work_package.id}}</span>
</div>
</td>
<td class="comments">{{timeEntry.comments}}</td>
<td class="hours">{{timeEntry.hours.toFixed(2)}}</td>
<td align="center">
<span ng-if="timeEntry.isEditable == true">
<a ng-href="{{PathHelper.timeEntryEditPath(timeEntry.id)}}" class="no-decoration-on-hover">
<icon-wrapper icon-name="edit" icon-title="{{I18n.t('js.button_edit')}}"></icon-wrapper>
</a>
<a ng-click="deleteTimeEntry(timeEntry.id)" href="#" class="no-decoration-on-hover">
<icon-wrapper icon-name="delete" icon-title="{{I18n.t('js.button_delete')}}"></icon-wrapper>
</a>
</span>
</td>
</tr>
</tbody>
</table>