Skip to content

Commit a4b1805

Browse files
committed
[DO NOT MERGE] make bootlint fail.
1 parent b79df54 commit a4b1805

File tree

3 files changed

+32
-32
lines changed

3 files changed

+32
-32
lines changed

src/main/webapp/WEB-INF/views/series/add.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,7 @@ <h3 th:text="${#strings.capitalize(add_series)}">
249249
<div class="col-sm-7">
250250
<input id="image"
251251
type="file"
252+
class="form-control"
252253
style="box-shadow: none; border: 0px;"
253254
accept="image/png,image/jpeg"
254255
th:field="*{uploadedImage}"

src/main/webapp/WEB-INF/views/series/info.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@
104104
<div class="col-sm-9">
105105
<input id="image"
106106
type="file"
107+
class="form-control"
107108
style="box-shadow: none; border: 0px;"
108109
accept="image/png,image/jpeg"
109110
th:field="*{uploadedImage}"

src/main/webapp/WEB-INF/views/site/events.html

Lines changed: 30 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -158,38 +158,36 @@ <h3 class="text-center" th:text="${#strings.capitalize(suspicious_activities)}">
158158
</div>
159159

160160
<div th:if="${not #lists.isEmpty(activities)}" class="row text-center">
161-
<div class="col-sm-12">
162-
<nav>
163-
<ul class="pagination">
164-
<li class="disabled" th:class="${pager.prev == null}? 'disabled'">
165-
<span aria-hidden="true" th:if="${pager.prev == null}">&laquo;</span>
166-
<!--/*/
167-
<a href="#" aria-label="Previous"
168-
th:if="${pager.prev != null}"
169-
th:href="@{${SITE_EVENTS_PAGE}(page=${pager.prev})}">
170-
<span aria-hidden="true">&laquo;</span>
171-
</a>
172-
/*/-->
173-
</li>
174-
<li class="active" th:each="item : ${pager.items}" th:class="${item == pager.currentPage}? 'active'">
175-
<a href="#" th:href="@{${SITE_EVENTS_PAGE}(page=${item})}"
176-
th:utext="|${item} &lt;span class='sr-only'&gt;(current)&lt;/span&gt;|">
177-
1 <span class="sr-only">(current)</span>
178-
</a>
179-
</li>
180-
<li class="disabled" th:class="${pager.next == null}? 'disabled'">
181-
<span aria-hidden="true" th:if="${pager.next == null}">&raquo;</span>
182-
<!--/*/
183-
<a href="#" aria-label="Next"
184-
th:if="${pager.next != null}"
185-
th:href="@{${SITE_EVENTS_PAGE}(page=${pager.next})}">
186-
<span aria-hidden="true">&raquo;</span>
187-
</a>
188-
/*/-->
189-
</li>
190-
</ul>
191-
</nav>
192-
</div>
161+
<nav>
162+
<ul class="pagination">
163+
<li class="disabled" th:class="${pager.prev == null}? 'disabled'">
164+
<span aria-hidden="true" th:if="${pager.prev == null}">&laquo;</span>
165+
<!--/*/
166+
<a href="#" aria-label="Previous"
167+
th:if="${pager.prev != null}"
168+
th:href="@{${SITE_EVENTS_PAGE}(page=${pager.prev})}">
169+
<span aria-hidden="true">&laquo;</span>
170+
</a>
171+
/*/-->
172+
</li>
173+
<li class="active" th:each="item : ${pager.items}" th:class="${item == pager.currentPage}? 'active'">
174+
<a href="#" th:href="@{${SITE_EVENTS_PAGE}(page=${item})}"
175+
th:utext="|${item} &lt;span class='sr-only'&gt;(current)&lt;/span&gt;|">
176+
1 <span class="sr-only">(current)</span>
177+
</a>
178+
</li>
179+
<li class="disabled" th:class="${pager.next == null}? 'disabled'">
180+
<span aria-hidden="true" th:if="${pager.next == null}">&raquo;</span>
181+
<!--/*/
182+
<a href="#" aria-label="Next"
183+
th:if="${pager.next != null}"
184+
th:href="@{${SITE_EVENTS_PAGE}(page=${pager.next})}">
185+
<span aria-hidden="true">&raquo;</span>
186+
</a>
187+
/*/-->
188+
</li>
189+
</ul>
190+
</nav>
193191
</div>
194192
</div>
195193
</div>

0 commit comments

Comments
 (0)