| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 | <div class="row">    <table style="width: 400px;">        <tr>            <td><h3>Verkäufer</h3></td>            <td>                <button type="button" class="btn btn-success" ng-click="save()"><i class="glyphicon glyphicon-floppy-disk"></i> Speichern</button>            </td>            <td>                <a type="button" class="btn btn-default" href="api/csv.php"><i class="glyphicon glyphicon-download"></i> CSV-Export</a>            </td>        </tr>    </table>    <br/>    <table class="table table-striped">        <tr>            <th>Verk.-Nr.</th>            <th>Name</th>            <th>Vorname</th>            <th>Adresse</th>            <th>PLZ</th>            <th>Ort</th>            <th>Telefon</th>            <th>E-Mail</th>        </tr>        <tr ng-repeat="s in sellers" class="middle">            <th>               {{s.seller_id}}            </th>            <td>                <input class="normal" type="text" ng-model="s.name" />            </td>            <td>                <input class="normal" type="text" ng-model="s.first_name" />            </td>            <td>                <input class="normal" type="text" ng-model="s.address" />            </td>            <td>                <input class="normal" type="text" ng-model="s.zip_code" />            </td>            <td>                <input class="normal" type="text" ng-model="s.place" />            </td>            <td>                <input class="normal" type="text" ng-model="s.phone" />            </td>            <td>                <input class="normal" type="text" ng-model="s.mail" />            </td>        </tr>    </table></div>
 |