~eventum-developers/eventum/trunk

« back to all changes in this revision

Viewing changes to templates/attached_emails.tpl.html

  • Committer: Bryan Alsdorf
  • Date: 2013-08-23 03:50:34 UTC
  • mto: (4033.1.168 eventum-skysql)
  • mto: This revision was merged to the branch mainline in revision 4660.
  • Revision ID: bryan@montyprogram.com-20130823035034-7f5r3pt1xg0xnnhk
Initial commit of CRM migration

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
//-->
22
22
</script>
23
23
{/literal}
24
 
<table width="600" border="0" cellspacing="0" cellpadding="1" align="center">
25
 
  <tr>
26
 
    <td>
27
 
      &nbsp;
28
 
    </td>
29
 
    <td width="100%">
30
 
      <table bgcolor="#FFFFFF" width="100%" cellspacing="1" cellpadding="2" border="0">
31
 
        <tr>
32
 
          <td colspan="3">
33
 
            <b>{t}Attached Emails{/t}</b>
34
 
          </td>
 
24
      <table class="bordered medium">
 
25
        <tr class="title">
 
26
          <th colspan="3">
 
27
            {t}Attached Emails{/t}
 
28
          </th>
35
29
        </tr>
36
30
        <tr>
37
 
          <td>
38
 
            <table cellpadding="2" cellspacing="1" bgcolor="white" width="100%" border="0">
39
 
              <tr>
40
 
                <td width="10">{t}Remove?{/t}</td>
41
 
                <td>{t}Sender{/t}</td>
42
 
                <td>{t}Subject{/t}</td>
43
 
                <td width="10"><nobr>{t}Notify Sender?{/t}</nobr></td>
44
 
              </tr>
45
 
              {section name="i" loop=$emails}
46
 
              {cycle values=$cycle assign="row_color"}
47
 
              <tr bgcolor="{$row_color}">
48
 
                <td align="center">
49
 
                  <input type="checkbox" name="emails[]" value="{$emails[i].sup_id}">
50
 
                </td>
51
 
                <td width="30%">
52
 
                  {$emails[i].sup_from|escape:"html"}
53
 
                </td>
54
 
                <td width="50%">
55
 
                  {$emails[i].sup_subject|escape:"html"}
56
 
                </td>
 
31
            <th width="10">{t}Remove?{/t}</th>
 
32
            <th>{t}Sender{/t}</th>
 
33
            <th>{t}Subject{/t}</th>
 
34
            <th width="10"><nobr>{t}Notify Sender?{/t}</nobr></th>
 
35
          </tr>
 
36
          {section name="i" loop=$emails}
 
37
          <tr class="{cycle values='odd,even'}">
 
38
            <td align="center">
 
39
              <input type="checkbox" name="emails[]" value="{$emails[i].sup_id}">
 
40
            </td>
 
41
            <td width="30%">
 
42
              {$emails[i].sup_from|escape:"html"}
 
43
            </td>
 
44
            <td width="50%">
 
45
              {$emails[i].sup_subject|escape:"html"}
 
46
            </td>
57
47
                <td align="center">
58
48
                  <input type="checkbox" name="notify_senders[]" value="{$emails[i].sup_id}">
59
49
                </td>
64
54
                  <input type="button" value="{t}Remove Selected{/t}" onClick="removeEmails(this.form);">
65
55
                </td>
66
56
              </tr>
67
 
            </table>
68
57
          </td>
69
58
        </tr>
70
 
      </table>
71
 
    </td>
72
 
    <td>
73
 
      &nbsp;
74
 
    </td>
75
 
  </tr>
76
59
</table>
77
60