Files

36 lines
1.0 KiB
Handlebars
Raw Permalink Normal View History

2026-05-14 14:45:14 -04:00
<p>Configuring DNS records for {{domain.domain}}.{{domain.tld}}</p>
2026-05-14 17:51:43 -04:00
<div id="ConfigureDNSTable">
2026-05-14 17:52:59 -04:00
<div style="width: 400px;"></div>
2026-05-14 17:51:43 -04:00
<table>
<tr>
{{#each dnsRecordsHeaders}}
<th>{{this}}</th>
{{/each}}
2026-05-14 18:06:26 -04:00
<th>Tools</th>
2026-05-14 17:51:43 -04:00
</tr>
{{#each dnsRecords}}
<tr>
{{#each this}}
2026-05-14 18:20:31 -04:00
{{#unless (eq this ../this._key)}}
2026-05-14 18:17:03 -04:00
<td>{{this}}</td>
{{/unless}}
2026-05-14 17:51:43 -04:00
{{/each}}
2026-05-14 18:06:26 -04:00
<!-- Edit / Delete options -->
2026-05-14 18:08:32 -04:00
<td>
2026-05-14 18:17:03 -04:00
<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>
2026-05-14 18:08:32 -04:00
</td>
2026-05-14 17:51:43 -04:00
</tr>
2026-05-14 16:34:50 -04:00
{{/each}}
2026-05-14 17:51:43 -04:00
</table>
</div>
2026-05-14 16:34:50 -04:00
2026-05-14 17:51:43 -04:00
<div class="ContentBox" id="DomainOptions">
<div style="width: 200px;"></div>
<p class="TitleText">Options</p>
<ul>
2026-05-14 18:33:29 -04:00
<li><a href="/dns/new/{{domain.id}}">Add New Record</a></li>
2026-05-14 17:51:43 -04:00
</ul>
</div>