Subversion Repositories SmartDukaan

Rev

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

Rev 4020 Rev 4027
Line 41... Line 41...
41
        </table>
41
        </table>
42
    </form>
42
    </form>
43
</div>
43
</div>
44
<div id="escalation-div" class="hidden">
44
<div id="escalation-div" class="hidden">
45
    <form id="escalation-form">
45
    <form id="escalation-form">
46
        <table >
46
        <table class="display">
-
 
47
            #foreach($item in $action.getEscalationMatrix())
-
 
48
                #if($velocityCount % 2 != 0)
47
            <tr >
49
                    <tr >
48
                <td >
50
                #end
49
                    #foreach($item in $action.getEscalationMatrix())
51
                <td>
50
                        #if($item.name().equals("ORDER_AND_PAYMENT_STATUS"))
52
                #if($item.name().equals("SHIPPING_AND_DELIVERY"))
51
                            <input type="radio" name="escalate" value="$item.name()" checked />
53
                    <input type="radio" name="escalate" value="$item.name()" checked />
52
                        #else
54
                #else
53
                            <input type="radio" name="escalate" value="$item.name()" />
55
                    <input type="radio" name="escalate" value="$item.name()" />
54
                        #end
56
                #end
55
                        $item.name() ($item.getDescription()) <br />
57
                <label title="$item.getDescription()">$item.name()</label> 
56
                    #end
-
 
57
                </td>
58
                </td>
-
 
59
                #if($velocityCount % 2 == 0)
-
 
60
                    </ tr>
-
 
61
                #end
58
            </tr>
62
            #end
59
            <tr >
63
            <tr >
60
                <td >
64
                <td colspan="2">
61
                    <textarea name="body" rows="5" class="required" cols="80" id="escalation-mail-body"></textarea>
65
                    <textarea name="body" rows="5" class="required" cols="80" id="escalation-mail-body"></textarea>
62
                </td>
66
                </td>
63
            </tr>
67
            </tr>
64
            <tr >
68
            <tr >
65
                <td >
69
                <td colspan="2">
66
                    <input type="submit" value="Escalate"/>
70
                    <input type="submit" value="Escalate"/>
67
                </td>
71
                </td>
68
            </tr>
72
            </tr>
69
        </table>
73
        </table>
70
    </form>
74
    </form>