Vous êtes sur la page 1sur 14

<%-- epi_html is for backwards compatibility --%>

<%@ page isELIgnored ="false" %>


<%@page import="java.util.*"%>
<%@page import="com.hno.icdp.common.*"%>
<%@page import="com.liferay.portal.service.UserLocalServiceUtil"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
<%@ taglib uri="http://www.springframework.org/tags" prefix="spring"%>
<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
<%@ taglib uri="http://java.sun.com/portlet" prefix="portlet" %>
<portlet:defineObjects />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.or
g/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
<head>
<style type="text/css">
form div {
position: none;
}
</style>
<script type="text/javascript">
function submitTask(action){
if($("#test-7").val()&&$("#test-7").val()=='other'&&$('#mesgTextArea').v
al()==''){
alert("Please enter some comments when 'Other' option is selected");
return;
}
$("#taskAction").val(action);
$("#taskComplete").submit();
}
function finishTask(){
$("#taskFinish").submit();
}
function closePopup(){
$.modal.close();
}
function onRemindChange(selectBoxId){
if(selectBoxId=='test-7'&&$("#test-7").val()=='notResponded'){
$("#remindSpan").attr("style","font-weight:bold;");
$("#test-9").attr("style","position:relative;");
}else if(selectBoxId=='test-7'){
$("#remindSpan").attr("style","font-weight:bold;display:none;");
}else if(selectBoxId=='test-8'&&$("#test-8").val()=='notResponded'){
$("#remindBulkSpan").attr("style","font-weight:bold;");
}else if(selectBoxId=='test-8'){
$("#remindBulkSpan").attr("style","font-weight:bold;display:none;");
}
}
$(document).ready(function(){
var tabs = $("div#mySliderTabs").sliderTabs({
mousewheel: false
});
});
$(document).ready(function(){
$('ul.tabs2').delegate('li:not(.current)', 'click', function() {
$(this).addClass('current').siblings().removeClass('current').parent
s('div.section').find('div.box').hide().eq($(this).index()).fadeIn(150);
})
});
function getTaskDetails(taskId,procInstId,patientId,goalName,goalDate){
$("#currTaskId").val(taskId);
$("#currProcInstId").val(procInstId);
var url="<portlet:resourceURL><portlet:param name='action' value='taskDe
tails'/></portlet:resourceURL>&taskId="+taskId+"&procInstId="+procInstId+"&patie
ntId="+patientId;
$.ajax({
url: url,
cache: false,
type: 'POST',
success: function(xml){
$("#simplemodal-container").attr('style','position: fixed; z-index
: 1002; height: 545px; width: 810px; left: 382.5px; top: 60.5px;');
$(xml).find("hisTasks").each( function(){
$("#taskTBody").empty();
$("#taskTBody").html($(this).text());

});
$(xml).find("currTask").each( function(){

$("#labelName").html($(this).text());

});


$(xml).find("patFirstName").each( function(){

$("#patFirstName").html($(this).text());

});

$(xml).find("patLastName").each( function(){

$("#patLastName").html($(this).text());

});

$(xml).find("patAge").each( function(){
var age=jQuery.trim($(this).text());
if(age.length>0){
$("#patAge").html('('+$(this).text()+')');
}else{
$("#patAge").html(' ');
}
});

$(xml).find("patDob").each( function(){
$("#patDob").html($(this).text());

});

$(xml).find("patHomePhone").each( function(){

$("#patHomePhone").html($(this).text());

});

$(xml).find("patWorkPhone").each( function(){

$("#patWorkPhone").html($(this).text());

});

$(xml).find("patEmail").each( function(){

$("#patEmail").html($(this).text());

});
$(xml).find("patGender").each( function(){
$("#patGender").html($(this).text());

});

$(xml).find("patAddr").each( function(){
$("#patAddr").html($(this).text());

});
$(xml).find("isMedicare").each( function(){
$("#medicareDiv").html($(this).text());

});
// Showing the Goal Details on Intervention Popup
$('#goalDetails').html("<span>"+goalName+"</span><span>|</span
><span class='red'>"+goalDate+"</span>");
}
});
}
function populateTaskDetails(taskId,procInstId,patientId,needId,goalId){
$("#currTaskId1").val(taskId);
$("#currProcInstId1").val(procInstId);
$("#currPersonId1").val(patientId);
$("#currNeedId1").val(needId);
$("#currGoalId1").val(goalId);
}
function getHistoryDetails(procInstId,goalName,goalId,patientId){

var url="<portlet:resourceURL><portlet:param name='action' value='historyDetail
s'/></portlet:resourceURL>&goalId="+goalId+"&patientId="+patientId+"&procInstId=
"+procInstId;
$.ajax({
url: url,
cache: false,
type: 'POST',
success: function(xml){
$(xml).find("prevInterTasks").each( function(){
$("#prevInterTasks").html($(this).text());

});
$(xml).find("prevTasks").each( function(){
$("#prevTasks").html($(this).text());

});

}
});
}
$(function(){
$("#loadingTaskDetails").ajaxStart(function () {
$('#firstTaskDiv').hide();
$('#secondTaskDiv').hide();
$('#thirdTaskDiv').hide();
//$("#simplemodal-container").attr('style','position: fixed; z-i
ndex: 1002; height: 525px; width: 810px; left: 382.5px; top: 60.5px;');
$(this).show();
});
$("#loadingTaskDetails").ajaxStop(function () {
$('#loadingTaskDetails').hide();
$('#firstTaskDiv').show();
$('#secondTaskDiv').show();
$('#thirdTaskDiv').show();
//$("#simplemodal-container").attr('style','position: fixed; z-i
ndex: 1002; height: 525px; width: 810px; left: 382.5px; top: 60.5px;');
});
});
function toggleTabs(tag){
$(tag).addClass('current').siblings().removeClass('current')
.parents('div.section').find('div.box').hide().e
q($(tag).index()).fadeIn(150);

}
function refreshCarePlan(){
window.location = "pcm-care-summary?searchedPatientId=${personId}&person
Name=&caseId=${caseId}";
}
function printCarePlan(){
//location.href = "<portlet:resourceURL><portlet:param name='action' val
ue='printCaseDetails'/></portlet:resourceURL>"+"&patientId=392";
window.open("<portlet:resourceURL><portlet:param name='action' value='pr
intCaseDetails'/></portlet:resourceURL>&patientId=${personId}",'_newtab');
}
function onAddGoalCommentPopupClick(id){
$("#commGoalId").val(id);
}
function onAddGoalCommentClick(){
var comments=$("#goalComments").val();
if(comments&&comments.length==0){
alert('Comments should not empty !');
}
$("#addCPCommentForm").submit();
}
</script>
</head>
<body>
<portlet:actionURL var="taskComplete"><portlet:param name="action" value="taskCo
mplete"/> </portlet:actionURL>
<portlet:actionURL var="taskFinish"><portlet:param name="action" value="taskFini
sh"/> </portlet:actionURL>
<!-- <div class="span-24 slider-area-grey"> -->
<div class="span-16 breadcrumb notopmargin"><a href="care-manager">my da
shboard</a> &gt;&gt; care summary</div>

<!-- modal content - TASK DETAILS START-->
<div id="basic-modal-content-addpatconsent" style="width: 810px;"
style="position: fixed; z-index: 1002; height: 525px; width: 810
px; left: 382.5px; top: 10.5px;">
<form action="${taskComplete}&searchedPatientId=${personId}&pers
onName=&caseId=${caseId}" name="taskComplete" method="post" id="taskComplete">
<input type="hidden" id="currTaskId" name="currTaskId" v
alue="" />
<input type="hidden" id="currProcInstId" name="currProcI
nstId" value="" />
<input type="hidden" id="taskAction" name="taskAction" v
alue="" />
<input type="hidden" id="searchedPatientId" name="search
edPatientId" value="${personId}" />
<input type="hidden" id="personName" name="personName" v
alue="" />
<div class="span-20 notopmargin">
<div id="loadingTaskDetails" style="display: non
e"
name="firstLoadingDiv">
<img class="img-preview spec-border"
src="<%=renderRequest.getContext
Path()%>/images/ajax-loader.gif"
alt="" style="padding-left: 275p
x;" />
</div>
<!--<div class="tab-heading-grey"><span class="t
ab-heading-plain">View All Notes 3</span></div>-->
<div class="span-38 slider-area-inner-pop notopm
argin"
id="firstTaskDiv" style="display: block;
">
<div class="span-6 notopmargin">
<div class="user-img" style="hei
ght: 76px;">
<img class="img-preview
spec-border"
src="<%=renderRe
quest.getContextPath()%>/images/icon_user.png"
alt="" />
</div>
<div style="float: left; margin-
left: 5px; margin-top: 6px;">
<h4>
<span id="patFir
stName">Michelangeto</span><br />
<span id="patLas
tName">Featherstonehaugh</span>
</h4>
<span id="patGender">Mal
e</span>, <span id="patDob">22/02/1978</span>
<span id="patAge">33</sp
an>
<div style="color: #DF52
52" id="medicareDiv"></div>
</div>
</div>
<div class="span-7 notopmargin">
<div class="fa-title-grey">
<span id="patAddr">N/A</
span>
</div>
<div class="fa-grey">Address</di
v>
<div class="f-spl-pop">
<span>Specialist:</span>
</div>
</div>
<div class="span-6 notopmargin">
<div class="f2-title">
<span id="patWorkPhone">
N/A</span>
</div>
<div class="f4">Mobile Phone</di
v>
<div class="f2-title">
<span id="patHomePhone">
N/A</span>
</div>
<div class="f4">Home Phone</div>
<div class="f-email">
<a href="javascript:void
(0);" id="patEmail">N/A</a>
</div>
</div>
</div>
<div class="clear"></div>
<div class="warning yellow" style="padding:10px;
">
<div id="goalDetails"></div>
</div>
<div class="span-20" id="secondTaskDiv">
<div class="tab-heading-grey">
<span class="tab-heading-plain">
Intervention History</span>
</div>
<div class="new_msg"
style="height: 150px; overflow-y
: scroll; overflow-x: hidden;"
id="historyDiv">
<table cellspacing="0" class="ta
blepop">
<colgroup>
<col style="width:106px;">
<col style="width:130px;">
<col sty
le="width:80px;">
<col style="display:table-column
;">
<col style="width:140px;">
</colgroup>
<thead>
<tr>
<th>Date</th>
<th>Name</th>
<th>Mode
</th>
<th>Comments</th>
<th>Completed By</th>
</tr>
</thead>
<tbody id="taskTBody">
<tr>
<td colspan="5">&nbsp;</td>
</tr>

</tbody>
</table>
</div>
</div>
<div class="span-20" id="thirdTaskDiv">
<div class="tab-heading-grey"><span class="tab-heading-plain">Ad
d Intervention</span></div>
<fieldset class="info_fieldset" style="background-color:#FFF; bo
rder:1px solid #E1E1E1; margin-bottom:15px">
<div id="fields" class="form ">
<div class="span-6 notopmargin" id="labelSpan">
<label style="font-weight:bold">Intervention Detail</label><di
v id="labelName"></div>


</div>
<div class="span-6 notopmargin" id="basic-modal">
<label style="font-weight:bold">Mode</label><select name="acti
onSelect" class="field unfilled" style="position:relative;" id="test-7" >
<option value='phone'>Phone</option>
<option value='mail'>Email</option>
<option value='inperson'>In Pers
on</option>
</select>
<div class="clear"></div>
<div></div>
<span style="font-weight:bold;display:none;" id="remindSpan"
>Remind after &nbsp;&nbsp;<select name="futureDate" multiple="multiple" style="
position:relative;display:none;" id="test-9" >
<option value='1'>1</option>
<option value='2'>2</option>
<option value='3'>3</option>
<option value='4'>4</option>
<option value='5'>5</option>
<option value='6'>6</option>
<option value='7'>7</option>
<option value='8'>8</option>
<option value='9'>9</option>
</select> day(s)
</span>
</div>
<div class="span-7 notopmargin">
<label style="font-weight:bold">Comments</label><textarea id="
mesgTextArea" name="message" class="text" style="height:50px" ></textarea>
</div>

</div>
</fieldset>
<div class="span-15">

<div class='icon-showcase-icons'>
<span class="csbutton" onclick="submitTask('update');">U
pdate</span>&nbsp;&nbsp;<span class="csbutton simplemodal-close">Cancel</span>
</div>

</div>
</div>
</div>
</form>
</div>
<!-- modal content - TASK DETAILS END-->
<!-- modal content - HISTORY/COMMENTS START -->
<div id="basic-modal-content-addcomment" style="width: 797px;heifght:240
px;">
<div id="loading" style="display: none">
<img class="img-preview spec-border"
src="<%=renderRequest.getContextPath()%>/images/
ajax-loader.gif"
alt="" />
</div>
<div class="span-20 notopmargin">
<div class="tab-heading-grey"><span class="tab-heading-plain">Comments</span
></div>
<div class="notopmargin">
<portlet:actionURL var="addGoalCommentUrl"><portlet:param name="action" val
ue="saveComment"/> </portlet:actionURL>
<form id="addCPCommentForm" method="post" action="${addGoalCommentUrl}&sear
chedPatientId=${personId}&personName=&caseId=${caseId}" >
<input type="hidden" name="commGoalId" id="commGoalId" value="" />
<input type="hidden" name="perid" value="${personId}" />
<fieldset class="info_fieldset" style="background-color:#FFF; bord
er:1px solid #E1E1E1;">
<div id="fields" class="form ">
<!-- <div class="span-6 notopmargin" id="basic-modal">
<label>Type</label>
<select name="select" class="field unfilled" style="position
:relative;">
<option>Select</option>
<option>Public</option>
</select>
</div>
<div class="span-6 notopmargin" id="basic-modal">
<label>Programs</label>
<select name="select" class="field unfilled" style="position
:relative;">
<option>Select</option>
</select>
</div>-->
<div class="span-19 notopmargin">
<label>Enter your comments</label>
<textarea name="goalComments" id="goalComments" cols="45" ro
ws="5"></textarea>
</div>
<div class="clear"></div>
<div class="span-14" style="margin-top:20px;">
<div class="button-showcase-icons"> <a href="javascript:void
(0);" onclick="onAddGoalCommentClick();" style="text-decoration:none;"><span cla
ss="csbutton">Save</span></a> <a href="#"><span class="csbutton simplemodal-clos
e">Cancel</span></a> </div>
</div>
</div>
</fieldset>
</form>
</div>
</div>
</div>
<!-- modal content - HISTORY/COMMENTS END -->
<!-- modal content - COMPLETE GOAL START -->
<div id="basic-modal-content-addactivity" style="width:800px;">
<form action="${taskFinish}&searchedPatientId=${personId}&person
Name=&caseId=${caseId}" name="taskFinish" method="post" id="taskFinish">
<input type="hidden" id="currTaskId1" name="currTaskId" value=
"" />
<input type="hidden" id="currProcInstId1" name="currProcInstId
" value="" />
<input type="hidden" id="currPersonId1" name="currPersonId" va
lue="" />
<input type="hidden" id="currNeedId1" name="currNeedId" value=
"" />
<input type="hidden" id="currGoalId1" name="currGoalId" value=
"" />
<div class="span-20 notopmargin">
<div class="tab-heading-grey"><span class="tab-heading-plain
">Complete</span></div>
<div class="notopmargin">
<fieldset class="info_fieldset" style="background-color:#F
FF; border:1px solid #E1E1E1;">
<div id="fields" class="form ">
<div class="span-6 notopmargin" id="basic-modal">
<label>Reason</label>
<select name="finishReason" class="field unfilled" s
tyle="position:relative;">
<option>Select</option>
<option>Goal Met</option>
<option>No longer needed</option>
<option>Refused to continue</option>
<option>Not motivated</option>
<option>Other</option>
</select>
</div>
<div class="span-19 notopmargin">
<label>Enter your comments</label>
<textarea name="finishComments" id="textarea" cols="
45" rows="5"></textarea>
</div>
<div class="clear"></div>
<div class="span-14" style="margin-top:20px;">
<div class="button-showcase-icons"> <a href="javascr
ipt:void(0);" style="text-decoration:none;"><span class="csbutton" onclick="fini
shTask();">Complete</span></a> <a href="#"><span class="csbutton simplemodal-clo
se">Cancel</span></a> </div>
</div>
</div>
</fieldset>
</div>
</div>
</form>
</div>
<!-- modal content - COMPLETE GOAL END -->
<div class="span-30 notopmargin">
<div class="tabbable">
<ul class="nav nav-tabs">
<li class=""><a href="pcm-case-info?searchedPati
entId=${personId}&personName=&caseId=${caseId}">Summary</a></li>
<li class="active"><a href="javascript:void(0);"
>Care Plan</a></li>
<li class=""><a href="pcm-case-reviews?searchedP
atientId=${personId}&personName=&caseId=${caseId}">Case Reviews</a></li>
<!-- <li class=""><a href="pcm-communication?sea
rchedPatientId=${personId}&personName=&caseId=${caseId}">Communication</a></li>
-->
<li class=""><a href="pcm-assessments?searchedPa
tientId=${personId}&personName=&caseId=${caseId}">Assessments</a></li>
<li class=""><a href="pcm-other?searchedPatientI
d=${personId}&personName=&caseId=${caseId}">Other</a></li>
</ul>
</div>
<div class="tab-heading-grey">
<span class="tab-heading-plain">Plan Of Care</span>
<span class="db-icons">
<a href="javascript:void(0)" title="Print" oncli
ck="printCarePlan();"><img src="<%=request.getContextPath()%>/images/icon-print-
bw.png"></a>
<a href="javascript:void(0)" title="Refresh" onc
lick="refreshCarePlan();"><img src="<%=request.getContextPath()%>/images/icon-re
fresh.png" alt="Refresh"></a>
</span>
</div>
<div class="block-fluid events">
<div class="dateitem">
<div class="info">
<a href="#" title="View">Recent Care Plan</a>
</div>
<div class="date">
${recentCareplan}
<c:if test="${actionTBD == 'Create'}">
<a href="manage-care-plan?searchedPatientId=${pe
rsonId}&actionTBD=${actionTBD}&caseId=${caseId}" class="basic6 tip" oldtitle="Ed
it" title="Create"><i class="black-icons edit_c" alt="Create"></i></a>
</c:if>
<c:if test="${actionTBD == 'Update'}">
<a href="manage-care-plan?searchedPatientId=${pe
rsonId}&actionTBD=${actionTBD}&caseId=${caseId}" class="basic6 tip" oldtitle="Ed
it" title="Update"><i class="black-icons edit_c" alt="Update"></i></a>
</c:if>
</div>
</div>

<div class="dateitem">
<div class="info">
<a href="#" title="View">Last Assessment</a>
</div>
<div class="date">
<a href="${lastAssessmentURL}" target="_blank" class="blue_l
ink" title="Last Assessment">${lastAssessmentDate}</a>
&nbsp;&nbsp;
<a href="${newAssessmentURL}" target="_blank" class="basic6
tip" oldtitle="New Assessment" title="New Assessment"><i class="black-icons-done
complete"></i></a>
</div>
</div>
<div class="fix"></div>
<!-- <div class="dateitem">
<div class="info">Signed by</div>
<div class="date"><a href="javascript:void(0);" class="blue_link" on
click="myFunction()">Sign here</a></div>
</div>
<div class="dateitem">
<div class="info">Signed date</div>
<div class="date">03/21/2013 14:22</div>
</div>
<div class="fix"></div>-->
</div>
<div class="clear"></div>
<c:if test="${not empty carePlan}">
<div id="mySliderTabs">

<!-- Unordered list representing the tabs -->
<ul>
<c:forEach var="carePlanItem" items="${carePlan}" varStatus="i">
<li><a href="#tab${i.index+1}">${carePlanItem.need} <small class
="tag count_care">${fn:length(carePlanItem.goalDetails)}</small></a></li>
</c:forEach>
<!--
<li><a href="#tab5">tab5 <small class="tag count_care">1</small></a>
</li>
<li><a href="#tab6">tab6 <small class="tag count_care">1</small></a>
</li>
<li><a href="#tab7">tab7 <small class="tag count_care">1</small></a>
</li>
<li><a href="#tab8">tab8 <small class="tag count_care">1</small></a>
</li>
-->
</ul>

<c:forEach var="carePlanItem" items="${carePlan}" varStatus="j">
<!-- Afterwards, include the div panels representing the panels of our
slider -->
<div id="tab${j.index+1}">
<div class="int_details">Evaluated: <span>${carePlanItem.evaluat
ed}</span></div>
<div class="int_details">Date of Evaluation: <span>${carePlanItem.ev
aluatedDate}</span></div>
<div class="int_details">Is Problem Identified: <span>${carePlanItem
.problemIdentified}</span></div>
<div class="int_pro">Problem: <span>${carePlanItem.problem}</span></
div>
<table cellspacing="0" class="tablepop">
<colgroup>
<col style="width:table-column;">
<col style="width:65px;">
<col style="width:65px;">
<col style="width:65px;">
<col style="width:table-column;">
<col style="width:45px;">
<col style="width:65px;">
<col style="width:88px;">
</colgroup>
<thead>
<tr>
<th>Goals</th>
<th>Date Started</th>
<th>Expected End Date</th>
<th>Status</th>
<th>Organization</th>
<th># Intervention</th>
<th>Last Intervention</th>
<th>&nbsp;</th>
</tr>
</thead>
<tbody>
<c:forEach var="carePlanGoal" items="${carePlanItem.goalDetails}
" >
<tr>
<td>${carePlanGoal.goalNotes}</td>
<td>${carePlanGoal.startDate}</td>
<td>${carePlanGoal.endDate}</td>
<td>${carePlanGoal.status}</td>
<td>${carePlanGoal.org}</td>
<td>${carePlanGoal.noOfIntervs}</td>
<td><fmt:formatDate pattern="MM/dd/yyyy HH:mm a" value="
${carePlanGoal.lastIntervDate}" /></td>
<td id="basic-modal">
<c:if test="${not carePlanGoal.caseClosed}">
<a href="javascript:void(0);" title="Add
Comment" onclick="onAddGoalCommentPopupClick('${carePlanGoal.goalId}');" class=
"addcomment tip"><i class="black-icons comment"></i></a>
<c:if test="${not fn:contains(carePlanGo
al.status,'Completed')}">
<a href="javascript:void(0);" ti
tle="Add Intervention" class="tip addpatconsent" onclick="getTaskDetails('${care
PlanGoal.taskId}','${carePlanGoal.procInstId}','${personId}','${carePlanGoal.goa
lNotes}','${carePlanGoal.startDate}')"><i class="intervention"></i></a>
<a href="javascript:void(0);" ti
tle="Complete" class="addactivity tip" onclick="populateTaskDetails('${carePlanG
oal.taskId}','${carePlanGoal.procInstId}','${personId}','${carePlanItem.programI
d}','${carePlanGoal.goalId}')"><i class="black-icons done"></i></a>
</c:if>
</c:if>
</td>
<!--
<td>
<c:choose>
<c:when test="${not fn:contains(carePlanInterven
tion.taskCompleted,'yes')}">
<div class="btn-
group pull-right">

<button data-toggle="dropdown" class="btn dropdown-toggle"><i class="icon-cog ">
</i><span class="caret"></span></button>

<ul class="dropdown-menu">
<li id="basic-modal"><
a href="#" class="basic3" onclick="getTaskDetails('${carePlanIntervention.taskId
}','${carePlanIntervention.procInstId}','${personId}')"><i class="icon-edit"></i
> View/Edit Details</a></li>
<li id="basic-
modal"><a href="#" class="basic" onclick="getHistoryDetails('${carePlanIntervent
ion.procInstId}','${carePlanIntervention.interventionName}','${carePlanIntervent
ion.interventionId}','${personId}')"><i class="icon-file"></i> View Comments</a>
</li>
</ul>
</div>
</c:when>
<c:when test="${fn:contains(carePlanIntervention
.taskCompleted,'yes')}">
<div class="btn-
group pull-right">

<button data-toggle="dropdown" class="btn dropdown-toggle"><i class="icon-cog ">
</i><span class="caret"></span></button>

<ul class="dropdown-menu">
<li id="basic-
modal"><a href="#" class="basic" onclick="getHistoryDetails('${carePlanIntervent
ion.procInstId}','${carePlanIntervention.interventionName}','${carePlanIntervent
ion.interventionId}','${personId}')"><i class="icon-file"></i> View Comments</a>
</li>
</ul>
</div>
</c:when>
</c:choose>

//<a href="javascript:void(0);" class="basic6
tip" oldtitle="Add Comment" title=""><i class="black-icons comment"></i></a>
//<a href="javascript:void(0);" class="tip" ol
dtitle="Complete" title=""><i class="black-icons done"></i></a>
</td>
-->
</tr>
</c:forEach>
</tbody>
</table>
</div>
</c:forEach>
<!--
<div id="tab5"></div>
<div id="tab6"></div>
<div id="tab7"></div>
<div id="tab8"></div>
-->
</div>
</c:if>
<div class="clear"></div>
<!-- <div style="width:340px; margin-left:10px; margin-top:5px;">Motivated
: <small class="tag low_risk">Yes</small> <small class="tag high_risk">No</small
></div> -->
</div>
</body>
</html>

Vous aimerez peut-être aussi