fix dns page

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