summaryrefslogtreecommitdiff
path: root/httemplate/elements/select-multiple-contact_class.html
blob: 81a71cc254bf4c1455fa94a53462c775960f7160 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<%doc>

Display a multi-select box containing all Email Types listed in
the contact_class table.

NOTE:
  Don't confuse "Contact Type" (contact_email.classnum) with
  "Customer Class" (cust_main.classnum)

</%doc>
<% include( '/elements/select-table.html',
    table        => 'contact_class',
    hashref      => { disabled => '' },
    name_col     => 'classname',
    field        => 'classnum',
    pre_options  => [ 0 => '(No Type)' ],
    multiple     => 1,
    all_selected => 1,
    @_,
  )
%>