Files
LittleBeast/view/openprovider/listdnszones.maron

33 lines
1.0 KiB
Plaintext

{@ include(common/header) @}
検索バー<br />
<a href="#" class="">DNSゾーンの追加ボタン</a>
{@ if (isset($data['data']['results'])) @}
<table>
<thead>
<tr>
<th>Domain name</th>
<th>Type</th>
<th>DNS provider</th>
<th>Renewal date</th>
<th>Date added</th>
<th>Last change</th>
</tr>
</thead>
<tbody>
{@ foreach ($data['data']['results'] as $d) @}
<tr>
<td><a href="/openprovider/getdns/{{ $d['name'] }}">{{ $d['name'] }}</a></td>
<td>{{ $d['type'] }}</td>
<td>{{ $d['provider'] }}</td>
<td></td>
<td>{{ $d['creation_date'] }}</td>
<td>{{ $d['modification_date'] }}</td>
</tr>
{@ endforeach @}
</tbody>
</table>
<p>結果数:{{ $data['data']['total'] }}</p>
{@ else @}
<p>何も見つけられませんでした。</p>
{@ endif @}
{@ include(common/footer) @}