summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/services_dnsmasq.php
diff options
context:
space:
mode:
authorheper <heper@users.noreply.github.com>2015-10-31 14:36:11 +0100
committerStephen Beaver <sbeaver@netgate.com>2015-11-04 09:15:51 -0500
commitc84a6977829e83fb61cb6cbe4f35df400b74d026 (patch)
tree5fe7a4747c067322d936bbe84480ba050e93246a /src/usr/local/www/services_dnsmasq.php
parent7562ea1d89e6cfd02c7b76000f4ac436169088b4 (diff)
downloadpfsense-c84a6977829e83fb61cb6cbe4f35df400b74d026.zip
pfsense-c84a6977829e83fb61cb6cbe4f35df400b74d026.tar.gz
convert services_dnsmasq to fa
Diffstat (limited to 'src/usr/local/www/services_dnsmasq.php')
-rw-r--r--src/usr/local/www/services_dnsmasq.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/usr/local/www/services_dnsmasq.php b/src/usr/local/www/services_dnsmasq.php
index ad79b18..821f286 100644
--- a/src/usr/local/www/services_dnsmasq.php
+++ b/src/usr/local/www/services_dnsmasq.php
@@ -356,8 +356,8 @@ foreach ($a_hosts as $i => $hostent):
<?=htmlspecialchars($hostent['descr'])?>
</td>
<td>
- <a href="services_dnsmasq_edit.php?id=<?=$i?>" class="btn btn-xs btn-info"><?=gettext('Edit')?></a>
- <a href="services_dnsmasq.php?type=host&amp;act=del&amp;id=<?=$i?>" class="btn btn-xs btn-danger"><?=gettext('Delete')?></a>
+ <a class="fa fa-pencil" title="<?=gettext('Edit host override')?>" href="services_dnsmasq_edit.php?id=<?=$i?>"></a>
+ <a class="fa fa-trash" title="<?=gettext('Delete host override')?>" href="services_dnsmasq.php?type=host&amp;act=del&amp;id=<?=$i?>" onclick="return confirm('<?=gettext("Are you sure you want to delete this host override?")?>')"></a>
</td>
</tr>
@@ -379,7 +379,7 @@ foreach ($a_hosts as $i => $hostent):
<?=htmlspecialchars($alias['description'])?>
</td>
<td>
- <a href="services_dnsmasq_edit.php?id=<?=$i?>" class="btn btn-xs btn-info"><?=gettext('Edit')?></a>
+ <a class="fa fa-pencil" title="<?=gettext('Edit host override')?>" href="services_dnsmasq_edit.php?id=<?=$i?>"></a>
</td>
</tr>
<?php
@@ -429,8 +429,8 @@ foreach ($a_domainOverrides as $i => $doment):
<?=htmlspecialchars($doment['descr'])?>
</td>
<td>
- <a href="services_dnsmasq_domainoverride_edit.php?id=<?=$i?>" class="btn btn-xs btn-info"><?=gettext('Edit')?></a>
- <a href="services_dnsmasq.php?act=del&amp;type=doverride&amp;id=<?=$i?>" class="btn btn-xs btn-danger"><?=gettext('Delete')?></a>
+ <a class="fa fa-pencil" title="<?=gettext('Edit domain override')?>" href="services_dnsmasq_domainoverride_edit.php?id=<?=$i?>"></a>
+ <a class="fa fa-trash" title="<?=gettext('Delete domain override')?>" href="services_dnsmasq.php?act=del&amp;type=doverride&amp;id=<?=$i?>" onclick="return confirm('<?=gettext("Are you sure you want to delete this domain override?")?>')"></a>
</td>
</tr>
<?php
@@ -449,4 +449,4 @@ endforeach;
print_info_box(gettext("Entries in this area override an entire domain, and subdomains, by specifying an".
" authoritative DNS server to be queried for that domain."));
-include("foot.inc"); \ No newline at end of file
+include("foot.inc");
OpenPOWER on IntegriCloud