沢山追加
This commit is contained in:
29
view/openprovider/searchcustomer.maron
Normal file
29
view/openprovider/searchcustomer.maron
Normal 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) @}
|
||||
Reference in New Issue
Block a user