キャッシュデータの作成

This commit is contained in:
2026-04-27 14:22:56 +09:00
parent 1bc9e594e2
commit 5b1a9c51bf
8 changed files with 198 additions and 127 deletions

View File

@@ -1,7 +1,7 @@
{@ include(common/header) @}
検索バー<br />
<a href="#" class="">DNSゾーンの追加ボタン</a>
{@ if (isset($data['results'])) @}
{@ if (isset($data['data']['results'])) @}
<table>
<thead>
<tr>
@@ -14,7 +14,7 @@
</tr>
</thead>
<tbody>
{@ foreach ($data['results'] as $d) @}
{@ foreach ($data['data']['results'] as $d) @}
<tr>
<td><a href="/openprovider/getdns/{{ $d['name'] }}">{{ $d['name'] }}</a></td>
<td>{{ $d['type'] }}</td>
@@ -26,6 +26,7 @@
{@ endforeach @}
</tbody>
</table>
<p>結果数:{{ $data['data']['total'] }}</p>
{@ else @}
<p>何も見つけられませんでした。</p>
{@ endif @}