summaryrefslogtreecommitdiff
path: root/httemplate/browse/realestate_location.html
blob: be2cd11f886a5c05535bbc34af74d0979d888f53 (plain)
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
<% include( 'elements/browse.html',
  title       => emt('Real Estate Locations'),
  name        => 'real estate locations',

  menubar => [
    'Edit units'         => "${p}browse/realestate_unit.html",
    'Add a new location' => "${p}edit/realestate_location.html",
    'Add a new unit'     => "${p}edit/realestate_unit.html",
  ],

  query => { table => 'realestate_location' },
  count_query => 'SELECT COUNT(*) FROM realestate_location',

  header => [ 'Location', 'Address', 'Address 2', 'City', 'State', 'Zip' ],
  fields => [
    'location_title',
    'address1',
    'address2',
    'city',
    'state',
    'zip'
  ],
  links => [
    ["${p}edit/realestate_location.html?",  'realestatelocnum' ],
  ],

  agent_virt  => 1,
  agent_pos   => 0,
  disableable => 1,
)
%>
<%init>


my $curuser = $FS::CurrentUser::CurrentUser;
die("access denied")
  unless $curuser->access_right('Edit inventory')
      || $curuser->access_right('Edit global inventory')
      || $curuser->access_right('Configuration');



</%init>