Revize abc5c3b0
Přidáno uživatelem Jan Čarnogurský před více než 4 roky(ů)
src/main/webapp/WEB-INF/templates/assembly.html | ||
---|---|---|
194 | 194 |
<button type="submit" class="btn btn-success mb-2 template-input-submit" name="saveConfiguration" onclick="checkIfConfigurationNameIsNull()">Uložit šablonu</button> |
195 | 195 |
</div> |
196 | 196 |
|
197 |
<div class="custom-control custom-switch form-group"> |
|
198 |
<input type="checkbox" class="custom-control-input" id="customSwitch1" checked> |
|
199 |
<label class="custom-control-label" for="customSwitch1">Zobrazovat prázdné řádky</label> |
|
200 |
</div> |
|
197 | 201 |
|
198 | 202 |
<div class="buttons-wrap"> |
199 | 203 |
<button type="submit" class="btn btn-secondary mb-2 " name="generateTable">Vygenerovat tabulku</button> |
... | ... | |
207 | 211 |
|
208 | 212 |
<div th:if="${contingencyTableRows}" class="container box exported-table"> |
209 | 213 |
<div class="col-md-12"> |
210 |
<table class="tg table"> |
|
214 |
<table class="tg table table-striped">
|
|
211 | 215 |
<tr th:each="contingencyTableRow : ${contingencyTableRows}"> |
212 | 216 |
<div class="tg-align" th:if="${contingencyTableRow.isHeader()}"> |
213 | 217 |
<th class="tg-align" th:each="contingencyTableRowCell : ${contingencyTableRow.getCells()}" th:colspan="${contingencyTableRowCell.getColSpan()}"> |
src/main/webapp/WEB-INF/templates/login.html | ||
---|---|---|
26 | 26 |
<table> |
27 | 27 |
<tr> |
28 | 28 |
<td>Přihlašovací jméno:</td> |
29 |
<td><input type="text" name="username" id="username" class="form-control"/></td> |
|
29 |
<td><input type="text" name="username" id="username" class="form-control" value="administrator"/></td>
|
|
30 | 30 |
</tr> |
31 | 31 |
<tr> |
32 | 32 |
<td>Heslo:</td> |
33 |
<td><input type="password" name="password" id="password" class="form-control"/></td> |
|
33 |
<td><input type="password" name="password" id="password" class="form-control" value="demo"/></td>
|
|
34 | 34 |
</tr> |
35 | 35 |
<tr> |
36 | 36 |
<td><button class="btn-primary btn" type="submit">Přihlásit</button></td> |
Také k dispozici: Unified diff
re #8167 - added switch for empty rows, class for stripped table. Set up default values for login