キャッシュデータの作成

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

@@ -3,7 +3,7 @@
<ul>
<li>顧客様</li>
<ul>
<li><a href="/openprovider/searchcustomer">顧客様検索</a></li>
<li><a href="/openprovider/listcustomer">顧客様検索</a></li>
</ul>
<li>ドメイン</li>
<ul>

View File

@@ -1,18 +1,18 @@
{@ include(common/header) @}
検索<br />
{@ if (isset($data['results'])) @}
{@ if (isset($data['data']['results'])) @}
<table>
<thead>
<tr>
<th>Name</th>
<th>Company</th>
<th>E-mail address</th>
<th>Handle</th>
<th>Notes</th>
<th>名前</th>
<th>会社名</th>
<th>メールアドレス</th>
<th>ハンドル</th>
<th>メモ</th>
</tr>
</thead>
<tbody>
{@ foreach ($data['results'] as $d) @}
{@ foreach ($data['data']['results'] as $d) @}
<tr>
<td><a href="/openprovider/getcustomer/{{ $d['handle'] }}">{{ $d['name']['full_name'] }}</a></td>
<td>{{ $d['company_name'] }}</td>
@@ -23,6 +23,7 @@
{@ endforeach @}
</tbody>
</table>
<p>結果数:{{ $data['data']['total'] }}</p>
{@ else @}
<p>何も見つけられませんでした。</p>
{@ endif @}

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 @}

View File

@@ -0,0 +1,3 @@
{@ include(common/header) @}
<h2>{{ $domain }}の登録</h2>
{@ include(common/footer) @}