ng2-encrm-components
Version:
112 lines (111 loc) • 3.91 kB
HTML
<div class="col-xs-12">
<h1 id="table">Table</h1>
<table class="table table-striped table-hover">
<thead>
<tr>
<th>
<label class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input">
<span class="custom-control-indicator"></span>
</label>
</th>
<th>NAZWA ODDZIAŁU</th>
<th>ULICA</th>
<th>KOD</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">
<label class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input">
<span class="custom-control-indicator"></span>
</label>
</th>
<td>Eniro Sp. z o.o. <strong>CENTRALA</strong></td>
<td>ul. Raciborska 12/50</td>
<td>90-670 Warszawa</td>
</tr>
<tr>
<th scope="row">
<label class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input">
<span class="custom-control-indicator"></span>
</label>
</th>
<td>Eniro Sp. z o.o.</td>
<td>ul. Raciborska 12/50</td>
<td>90-670 Warszawa</td>
</tr>
<tr>
<th scope="row">
<label class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input">
<span class="custom-control-indicator"></span>
</label>
</th>
<td>Jakaś bardzo długa nazwa firmy Sp. z o.o.</td>
<td>ul. Raciborska 12/50</td>
<td>90-670 Warszawa</td>
</tr>
</tbody>
</table>
<br>
<tabset>
<tab heading="HTML">
<pre><code highlight class="html"><table class="table table-striped table-hover">
<thead>
<tr>
<th>
<label class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input">
<span class="custom-control-indicator"></span>
</label>
</th>
<th>NAZWA ODDZIAŁU</th>
<th>ULICA</th>
<th>KOD</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">
<label class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input">
<span class="custom-control-indicator"></span>
</label>
</th>
<td>Eniro Sp. z o.o. <strong>CENTRALA</strong></td>
<td>ul. Raciborska 12/50</td>
<td>90-670 Warszawa</td>
</tr>
<tr>
<th scope="row">
<label class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input">
<span class="custom-control-indicator"></span>
</label>
</th>
<td>Eniro Sp. z o.o.</td>
<td>ul. Raciborska 12/50</td>
<td>90-670 Warszawa</td>
</tr>
<tr>
<th scope="row">
<label class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input">
<span class="custom-control-indicator"></span>
</label>
</th>
<td>Jakaś bardzo długa nazwa firmy Sp. z o.o.</td>
<td>ul. Raciborska 12/50</td>
<td>90-670 Warszawa</td>
</tr>
</tbody>
</table></code></pre>
</tab>
<tab heading="TypeScript">
<pre><code highlight class="typescript">none</code></pre>
</tab>
</tabset>
</div>