キャッシュデータの作成
This commit is contained in:
30
view/openprovider/listcustomer.maron
Normal file
30
view/openprovider/listcustomer.maron
Normal file
@@ -0,0 +1,30 @@
|
||||
{@ include(common/header) @}
|
||||
検索<br />
|
||||
{@ if (isset($data['data']['results'])) @}
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>名前</th>
|
||||
<th>会社名</th>
|
||||
<th>メールアドレス</th>
|
||||
<th>ハンドル</th>
|
||||
<th>メモ</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{@ 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>
|
||||
<td>{{ $d['email'] }}</td>
|
||||
<td>{{ $d['handle'] }}</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
{@ endforeach @}
|
||||
</tbody>
|
||||
</table>
|
||||
<p>結果数:{{ $data['data']['total'] }}</p>
|
||||
{@ else @}
|
||||
<p>何も見つけられませんでした。</p>
|
||||
{@ endif @}
|
||||
{@ include(common/footer) @}
|
||||
Reference in New Issue
Block a user