Merge branch 'master' into controller-fix
This commit is contained in:
@ -35,11 +35,10 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="beschreibung">Beschreibung der Gruppe</label>
|
<label for="beschreibung">Beschreibung der Gruppe</label>
|
||||||
<textarea type="text" class="form-control" id="beschreibung" th:name="beschreibung">
|
<textarea th:name="beschreibung" class="form-control" id="beschreibung" rows="3"></textarea>
|
||||||
</textarea>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<button type="submit">Erstellen</button>
|
<button class="btn btn-primary" type="submit" style="background: #52a1eb; border-style: none">Erstellen</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|||||||
@ -30,9 +30,12 @@
|
|||||||
<form action="/" method="get">
|
<form action="/" method="get">
|
||||||
<div th:each="gruppe: ${gruppen}">
|
<div th:each="gruppe: ${gruppen}">
|
||||||
<div style="border: 10px solid aliceblue; background: aliceblue">
|
<div style="border: 10px solid aliceblue; background: aliceblue">
|
||||||
<h4 th:href="url" style="color: dodgerblue; font-weight: bold" th:text="${gruppe.getTitle()}"></h4>
|
<h3>
|
||||||
|
<a href="url" style="color: dodgerblue; font-weight: bold" th:text="${gruppe.getTitle()}"></a>
|
||||||
|
</h3>
|
||||||
<p th:text="${gruppe.getDescription()}"></p>
|
<p th:text="${gruppe.getDescription()}"></p>
|
||||||
</div>
|
</div>
|
||||||
|
<br>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -35,16 +35,7 @@
|
|||||||
<label>Suchbegriff:</label>
|
<label>Suchbegriff:</label>
|
||||||
<input class="form-control" type="text" value="" name="suchbegriff" placeholder="z.B. Programmieren, Lerngruppe, ...">
|
<input class="form-control" type="text" value="" name="suchbegriff" placeholder="z.B. Programmieren, Lerngruppe, ...">
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<button type="button" class="btn btn-primary" style="background: #52a1eb; border-style: none">Suchen</button>
|
||||||
<input type="checkbox" style="margin-left: 10px;"> Öffentliche Gruppen
|
|
||||||
<input type="checkbox" style="margin-left: 24px;"> Private Gruppen
|
|
||||||
<br>
|
|
||||||
<input type="checkbox" style="margin-left: 10px;"> Suchbegriff im Namen
|
|
||||||
<input type="checkbox" style="margin-left: 10px;"> Suchbegriff in der Beschreibung
|
|
||||||
<input type="checkbox" style="margin-left: 10px;"> Suchbegriff in der Veranstaltung
|
|
||||||
</div>
|
|
||||||
<br>
|
|
||||||
<button type="button" class="btn btn-primary" style="background: dodgerblue">Suchen</button>
|
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
<br>
|
<br>
|
||||||
|
|||||||
Reference in New Issue
Block a user