沢山追加
This commit is contained in:
32
view/openprovider/listdnszones.maron
Normal file
32
view/openprovider/listdnszones.maron
Normal file
@@ -0,0 +1,32 @@
|
||||
{@ include(common/header) @}
|
||||
検索バー<br />
|
||||
<a href="#" class="">DNSゾーンの追加ボタン</a>
|
||||
{@ if (isset($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['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>
|
||||
{@ else @}
|
||||
<p>何も見つけられませんでした。</p>
|
||||
{@ endif @}
|
||||
{@ include(common/footer) @}
|
||||
Reference in New Issue
Block a user