~eventum-developers/eventum/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{include file="header.tpl.html"}

<br />
<table width="100%" bgcolor="{$cell_color}" border="0" cellspacing="0" cellpadding="1" align="center">
  <tr>
    <td>
      <table bgcolor="#FFFFFF" width="100%" cellspacing="1" cellpadding="2">
        <tr>
          <td class="default">
            <b>{t}History of Changes to Issue{/t} #{$smarty.get.iss_id}</b>
          </td>
        </tr>
        <tr>
          <td>
            <table bgcolor="#FFFFFF" width="100%" cellspacing="1" cellpadding="2">
              <tr>
                <td bgcolor="{$cell_color}" class="default_white">{t}Date{/t}</td>
                <td bgcolor="{$cell_color}" width="70%" class="default_white">{t}Summary{/t}</td>
              </tr>
              {section name="i" loop=$changes}
              {cycle values=$cycle assign="row_color"}
              <tr>
                <td align="center" {if $changes[i].htt_role > $roles.customer}bgcolor="{$internal_color}" class="default_white"{else}bgcolor="{$row_color}" class="default"{/if} nowrap>
                  {$changes[i].his_created_date}
                </td>
                <td bgcolor="{$row_color}" width="85%" class="default">
                  {$changes[i].his_summary|escape:"html"|replace:"no value set":"<i>no value set</i>"}
                </td>
              </tr>
              {sectionelse}
              <tr>
                <td colspan="2" bgcolor="{$light_color}" class="default" align="center">
                  <i>{t}No changes could be found.{/t}</i>
                </td>
              </tr>
              {/section}
              <tr>
                <td colspan="2" bgcolor="{$cell_color}" align="center">
                  <input type="button" class="button" value="{t}Close{/t}" onClick="javascript:window.close();">
                </td>
              </tr>
            </table>
          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<br />

{if $current_role > $roles.customer}
<table width="100%" bgcolor="{$cell_color}" border="0" cellspacing="0" cellpadding="1" align="center">
  <tr>
    <td>
      <table bgcolor="#FFFFFF" width="100%" cellspacing="1" cellpadding="2">
        <tr>
          <td class="default">
            <b>{t}History of Reminders Triggered for Issue{/t} #{$smarty.get.iss_id}</b>
          </td>
        </tr>
        <tr>
          <td>
            <table bgcolor="#FFFFFF" width="100%" cellspacing="1" cellpadding="2">
              <tr>
                <td bgcolor="{$cell_color}" class="default_white">{t}Date{/t}</td>
                <td bgcolor="{$cell_color}" width="70%" class="default_white">{t}Triggered Action{/t}</td>
              </tr>
              {section name="i" loop=$reminders}
              {cycle values=$cycle assign="row_color"}
              <tr>
                <td align="center" bgcolor="{$row_color}" class="default" nowrap>
                  {$reminders[i].rmh_created_date}
                </td>
                <td bgcolor="{$row_color}" width="85%" class="default">
                  {$reminders[i].rma_title|escape:"html"}
                </td>
              </tr>
              {sectionelse}
              <tr>
                <td colspan="2" bgcolor="{$light_color}" class="default" align="center">
                  <i>{t}No reminders could be found.{/t}</i>
                </td>
              </tr>
              {/section}
              <tr>
                <td colspan="2" bgcolor="{$cell_color}" align="center">
                  <input type="button" class="button" value="{t}Close{/t}" onClick="javascript:window.close();">
                </td>
              </tr>
            </table>
          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<br />
{/if}

{include file="app_info.tpl.html"}
{include file="footer.tpl.html"}