arti-angular-app/src/app/fixed-asset/fixed-asset.component.html

55 lines
2.2 KiB
HTML
Executable File

<div class="container">
<h2>Lista środków trwałych</h2>
<table id="assets" class="table">
<thead>
<tr>
<th class="col-2">Numer inwentarzowy</th>
<th class="col-2">KŚT</th>
<th class="col-2">Zmiany wartości</th>
<th class="col-2">Metoda amortyzacji</th>
<th class="col-2">Plan</th>
<th class="col-2" ></th>
</tr>
</thead>
<tbody>
<tr>
<div class="row">
<td class="col-2"><a href="/assets/Inv1/edit">Inv1</a></td>
<td class="col-2" >001</td>
<td class="col-2">
<a href="/assets/Inv1/life-browsing"><b>1</b> zmian</a></td>
<td class="col-2">
<a href="/assets/Inv1/methods-browsing"><b>1</b> metod</a></td>
<td class="col-2"><a href="/assets/Inv1/plan-calculate"><b>Wylicz plan</b></a></td>
<td class="col-2"><a type="button" class="btn btn-outline-secondary"
href="/assets/Inv1/remove">Usuń Składnik</a></td>
</div>
</tr>
<tr>
<div class="row">
<td class="col-2"><a href="/assets/Inv2/edit">Inv2</a></td>
<td class="col-2" >002</td>
<td class="col-2">
<a href="/assets/Inv2/life-browsing"><b>2</b> zmian</a></td>
<td class="col-2">
<a href="/assets/Inv2/methods-browsing"><b>1</b> metod</a></td>
<td class="col-2"><a href="/assets/Inv2/plan-calculate"><b>Wylicz plan</b></a></td>
<td class="col-2"><a type="button" class="btn btn-outline-secondary"
href="/assets/Inv2/remove">Usuń Składnik</a></td>
</div>
</tr>
</tbody>
</table>
<a type="button" class="btn btn-outline-secondary" href="/assets/new">Dodaj środek trwały</a>
<a type="button" class="btn btn-outline-secondary" href="/assets/init-default">Zainicjuj domyślną listę</a>
</div>