21 lines
727 B
HTML
21 lines
727 B
HTML
<div class="container">
|
|
<div class="row">
|
|
<div ng-show="accounts.length > 1" style="margin: 2ex; text-align: center; font-size: 120%;">
|
|
<select
|
|
ng-model='account'
|
|
ng-change='initPage()'
|
|
ng-options="account.name for account in accounts track by account.id"></select>
|
|
</div>
|
|
|
|
<form name="importForm" ng-submit="importCSV()" style="text-align: center;">
|
|
<textarea ng-model='csvInput' name="csvText" cols="140" rows="20"></textarea>
|
|
|
|
<div>
|
|
<button id="transactionSubmit" type="submit" class="btn btn-primary">
|
|
<span ng-show="waitingForImport"><i class="glyphicon glyphicon-refresh spinning"></i> </span>
|
|
Analyze
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div> |