- Timestamp:
- 06/23/16 17:11:40 (8 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dns.cgi
r733 r735 1903 1903 1904 1904 # some magic to label and linkify the column headers for sorting 1905 my @cols = ('domain','revzone','host','type','val' ,'location');1905 my @cols = ('domain','revzone','host','type','val'); 1906 1906 my %colheads = (domain => "Domain (Group)", revzone => "Reverse zone (Group)", host => "Host", 1907 type => "Type", val => "IP/value", location => "Location"); 1907 type => "Type", val => "IP/value"); 1908 # only users allowed to see location/view data get this column 1909 if ($permissions{admin} || $permissions{location_view}) { 1910 $colheads{location} = "Location"; 1911 push @cols, 'location'; 1912 } 1908 1913 fill_colheads($sortby, $sortorder, \@cols, \%colheads); 1909 1914 -
trunk/templates/recsearch.tmpl
r731 r735 59 59 <td><TMPL_VAR NAME=val></td> 60 60 </TMPL_IF> 61 < td><TMPL_VAR NAME=location></td>61 <TMPL_IF mayloc><td><TMPL_VAR NAME=location></td></TMPL_IF> 62 62 </tr> 63 63 </TMPL_LOOP> 64 64 <TMPL_ELSE> 65 <tr><td colspan=" 5" align="center">No records found matching '<TMPL_VAR NAME=searchfor>'</td></tr>65 <tr><td colspan="<TMPL_IF mayloc>6<TMPL_ELSE>5</TMPL_IF>" align="center">No records found matching '<TMPL_VAR NAME=searchfor>'</td></tr> 66 66 </TMPL_IF> 67 67 </table>
Note:
See TracChangeset
for help on using the changeset viewer.