fix dns page

This commit is contained in:
2026-05-14 18:17:03 -04:00
parent 9ee2a774fd
commit 3ca9f1c75d
+4 -2
View File
@@ -12,13 +12,15 @@
{{#each dnsRecords}}
<tr>
{{#each this}}
{{#unless (eq this "_key")}}
<td>{{this}}</td>
{{/unless}}
{{/each}}
<!-- Edit / Delete options -->
<td>
<a href="/dns/edit/{{this._key}}"><img src="/img/Wrench.png" alt="Edit"></a>
<a href="/dns/delete/{{this._key}}"><img src="/img/Cancel.png" alt="Delete"></a>
<a href="/dns/edit?key={{this._key}}"><img src="/img/Wrench.png" alt="Edit"></a>
<a href="/dns/delete?key={{this._key}}"><img src="/img/Cancel.png" alt="Delete"></a>
</td>
</tr>
{{/each}}