| | |
| | | <table class="table table-dash table-lightborder width600 table-layout-fixed"> |
| | | <thead> |
| | | <tr> |
| | | <th class="text-center width-80-p" translate="dashboard.division"> |
| | | <!--<th class="text-center width-80-p" translate="dashboard.division"> |
| | | 구분 |
| | | </th> |
| | | </th>--> |
| | | <th class="text-center" translate="common.projectName"> |
| | | 프로젝트 |
| | | </th> |
| | |
| | | <th class="text-center width-80-p" translate="common.status"> |
| | | 상태 |
| | | </th> |
| | | <th class="text-center width-120-p" translate="common.assignee"> |
| | | <!--<th class="text-center width-120-p" translate="common.assignee"> |
| | | 담당자 |
| | | </th> |
| | | </th>--> |
| | | </tr> |
| | | </thead> |
| | | <tbody> |
| | | <tr ng-repeat="issue in vm.riskIssueWidget.issues"> |
| | | <td class="text-center"> |
| | | <!--<td class="text-center"> |
| | | <span class="fs-12"> |
| | | <i class="os-icon os-icon-user-male-circle text-danger" |
| | | ng-if="issue.changeAssigneeType"></i> |
| | | <i class="os-icon os-icon-alert-circle text-danger" |
| | | ng-if="issue.changeIssueStatusType"></i> |
| | | </span> |
| | | </td> |
| | | </td>--> |
| | | <td class="text-center"> |
| | | {{issue.projectName}} |
| | | </td> |
| | |
| | | <td class="text-center"> |
| | | {{issue.issueStatusName}} |
| | | </td> |
| | | <td class="text-center"> |
| | | <!--<td class="text-center"> |
| | | <div owl-profile-over class="" table-user-image="issue" target="issueUsers"></div> |
| | | </td> |
| | | </td>--> |
| | | </tr> |
| | | <tr ng-show="vm.riskIssueWidget.issues.length < 1"> |
| | | <td colspan="4" translate="common.noData">데이터가 없습니다.</td> |
| | | <td colspan="3" translate="common.noData">데이터가 없습니다.</td> |
| | | </tr> |
| | | </tbody> |
| | | </table> |