adding export to read mailbox status information, RT#15987
[freeside.git] / httemplate / elements / tr-select-agent_types.html
1 % unless ( $opt{'disabled'} || scalar(@all_agent_types) == 1 ) {
2
3 <% include('/elements/tr-justtitle.html', value=>'Agent (reseller) types') %>
4
5 % }
6
7 <TR>
8   <TD COLSPAN=2>
9     <% include('select-agent_types.html', %opt) %>
10   </TD>
11 </TR>
12
13 <%init>
14
15 my %opt = @_;
16
17 my @all_agent_types = map {$_->typenum} qsearch('agent_type',{});
18
19 </%init>