29 lines
834 B
Plaintext
29 lines
834 B
Plaintext
{@ 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) @} |