25 lines
919 B
Plaintext
25 lines
919 B
Plaintext
<%@ page language="java" pageEncoding="UTF-8"%>
|
|
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
|
|
<c:if test="${not empty processMessage}">
|
|
<div class="alert alert-info" style="margin-bottom:10px;">${processMessage}</div>
|
|
</c:if>
|
|
<ul class="timeline">
|
|
<c:forEach items="${businessUnitRecords}" var="item" varStatus="status">
|
|
<li>
|
|
<c:choose>
|
|
<c:when test='${finishFlag && status.last}'>
|
|
<i class="fa fa-check bg-blue"></i>
|
|
</c:when>
|
|
<c:otherwise>
|
|
<i class="fa fa-clock-o bg-grey"></i>
|
|
</c:otherwise>
|
|
</c:choose>
|
|
<div class="timeline-item">
|
|
<span class="time"><i class="fa fa-clock-o"></i> ${item.insdt.substring(0,16)}</span>
|
|
<h3 class="timeline-header"><a href="#">${item.taskName}</a> ${item.user.caption}</h3>
|
|
<div class="timeline-body">${item.record}</div>
|
|
</div>
|
|
</li>
|
|
</c:forEach>
|
|
</ul>
|