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/assets/stylesheets/content/_work_packages_table.md

98 lines
1.4 KiB

# Work packages table
```
<table class="workpackages-table" cellpadding="0" cellspacing="0">
<thead>
<th><input type="checkbox"></th>
<th class="icon-table"><i class="icon-info"></i></th>
<th>Task</th>
<th class="active-column">Subject</th>
<th>Type</th>
<th>Status</th>
<th>Priority</th>
<th>Assignee</th>
</thead>
<tbody>
<tr>
<td class="checkbox">
<p><input type="checkbox"></p>
</td>
<td class="icon-table info">
<p><i class="icon-info"></i></p>
</td>
<td>
<p>1234</p>
</td>
<td>
<p>Lorem ipsum</p>
</td>
<td>
<p>User Story</p>
<div class="active-column"></div>
</td>
<td>
<p>In Progress</p>
</td>
<td>
<p>Normal</p>
</td>
<td>
<p>John Doe</p>
</td>
</tr>
<tr>
<td>
<p><input type="checkbox"></p>
</td>
<td class="icon-table">
<p><i class="icon-info"></i></p>
</td>
<td>
<p>1234</p>
</td>
<td>
<p>Lorem ipsum</p>
</td>
<td>
<p>User Story</p>
</td>
<td>
<p>In Progress</p>
</td>
<td>
<p>Normal</p>
</td>
<td>
<p>John Doe</p>
</td>
</tr>
<tr>
<td>
<p><input type="checkbox"></p>
</td>
<td class="icon-table">
<p><i class="icon-info"></i></p>
</td>
<td>
<p>1234</p>
</td>
<td>
<p>Lorem ipsum</p>
</td>
<td>
<p>User Story</p>
</td>
<td>
<p>In Progress</p>
</td>
<td>
<p>Normal</p>
</td>
<td>
<p>John Doe</p>
</td>
</tr>
</tbody>
</table>
```