Subversion Repositories SmartDukaan

Rev

Rev 4241 | Rev 5224 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4241 Rev 5203
Line 16... Line 16...
16
                #if($action.getUserId())
16
                #if($action.getUserId())
17
                #else
17
                #else
18
                <th>Customer Id</th>
18
                <th>Customer Id</th>
19
                #end
19
                #end
20
                <th>Ticket Id</th>
20
                <th>Ticket Id</th>
-
 
21
                <th>Ticket Status</th>
21
                <th>Category</th>
22
                <th>Category</th>
22
				#if($action.getUserId())
-
 
23
				<th></th>
23
				<th>Contact Number</th>
24
				#end
-
 
25
            </tr>
24
            </tr>
26
        </thead>
25
        </thead>
27
        <tbody>
26
        <tbody>
28
            #foreach($activity in $action.getActivities())
27
            #foreach($activity in $action.getActivities())
29
            <tr id="activity-row-$activity.getId()">
28
            <tr id="activity-row-$activity.getId()">
Line 31... Line 30...
31
                    <a alt="Show Activity Details" title="Show Activity Details" href="#" userId="$action.getUserId()" activityId="$activity.getId()" class="show-activity-details">
30
                    <a alt="Show Activity Details" title="Show Activity Details" href="#" userId="$action.getUserId()" activityId="$activity.getId()" class="show-activity-details">
32
                        $activity.getId()
31
                        $activity.getId()
33
                    </a>
32
                    </a>
34
                </td>
33
                </td>
35
                <td class="truncated-text" truncatedTextWidth="160">$activity.getType().name()</td>
34
                <td class="truncated-text" truncatedTextWidth="160">$activity.getType().name()</td>
36
                <td class="truncated-text" truncatedTextWidth="100"><pre>$activity.getDescription()</pre></td>
35
                <td class="truncated-text" truncatedTextWidth="85"><pre>$activity.getDescription()</pre></td>
37
                <td class="truncated-text" truncatedTextWidth="90">$action.convertDate($activity.getCreationTimestamp())</td>
36
                <td class="truncated-text" truncatedTextWidth="85">$action.convertDate($activity.getCreationTimestamp())</td>
38
                <td class="truncated-text" truncatedTextWidth="90">$action.getAgent($activity.getCreatorId()).getEmailId()</td>
37
                <td class="truncated-text" truncatedTextWidth="90">$action.getAgent($activity.getCreatorId()).getEmailId()</td>
39
                #if($action.getUserId())
38
                #if($action.getUserId())
40
                #else
39
                #else
41
                <td >
40
                <td >
42
                #if($activity.isSetCustomerId())
41
                #if($activity.isSetCustomerId())
Line 63... Line 62...
63
                        </a>
62
                        </a>
64
                    #else
63
                    #else
65
                        N/A
64
                        N/A
66
                    #end
65
                    #end
67
                </td>
66
                </td>
-
 
67
				<td >
-
 
68
					#if ($activity.isSetTicketStatus())
-
 
69
						$activity.getTicketStatus()
-
 
70
					#else
-
 
71
						N/A
-
 
72
					#end
-
 
73
                </td>
68
                <td class="truncated-text" truncatedTextWidth="50">#if($activity.getTicketCategory()) $activity.getTicketCategory().name() #else N/A #end</td>
74
                <td class="truncated-text" truncatedTextWidth="50">#if($activity.getTicketCategory()) $activity.getTicketCategory().name() #else N/A #end</td>
-
 
75
				<td >
69
				#if($action.getUserId())
76
					#if ($activity.isSetCustomerMobileNumber())
-
 
77
						$activity.getCustomerMobileNumber()
-
 
78
					#else
70
					<td>
79
						N/A
71
					<span ><input type="button" class="smallButton" value="Mark Read" activityId="$activity.getId()" id="mark-as-read"/></span>
-
 
72
					</td>
80
					#end
73
                #end
81
                </td>
74
            </tr>
82
            </tr>
75
            #end
83
            #end
76
        </tbody>
84
        </tbody>
77
    </table>
85
    </table>
78
</div>
86
</div>