沢山追加

This commit is contained in:
2026-04-27 13:18:55 +09:00
parent f0f75124ee
commit 1bc9e594e2
21 changed files with 971 additions and 175 deletions

View File

@@ -0,0 +1,29 @@
{@ include(common/header) @}
検索<br />
{@ if (isset($data['results'])) @}
<table>
<thead>
<tr>
<th>Name</th>
<th>Company</th>
<th>E-mail address</th>
<th>Handle</th>
<th>Notes</th>
</tr>
</thead>
<tbody>
{@ foreach ($data['results'] as $d) @}
<tr>
<td><a href="/openprovider/getcustomer/{{ $d['handle'] }}">{{ $d['name']['full_name'] }}</a></td>
<td>{{ $d['company_name'] }}</td>
<td>{{ $d['email'] }}</td>
<td>{{ $d['handle'] }}</td>
<td></td>
</tr>
{@ endforeach @}
</tbody>
</table>
{@ else @}
<p>何も見つけられませんでした。</p>
{@ endif @}
{@ include(common/footer) @}