Spiele Edit HTML
This commit is contained in:
parent
2b0d7a862f
commit
583804f3ad
|
@ -5,15 +5,15 @@
|
|||
|
||||
<div id="view" class="mt-5">
|
||||
<h2>Material</h2>
|
||||
<p><%= spiel.material %></p>
|
||||
<p><%- spiel.material %></p>
|
||||
<h2>Dauer</h2>
|
||||
<p><%= spiel.dauer %></p>
|
||||
<p><%- spiel.dauer %></p>
|
||||
|
||||
<h2>Regeln</h2>
|
||||
<p><%= spiel.regeln %></p>
|
||||
<p><%- spiel.regeln %></p>
|
||||
|
||||
<h2>Variationen</h2>
|
||||
<p><%= spiel.variationen %></p>
|
||||
<p><%- spiel.variationen %></p>
|
||||
<% if (session && (session.role === 'user' || session.role==='admin')) {%>
|
||||
<button class="btn btn-primary" onclick="toggleDivs()">Zum Edit-Modus wechseln</button>
|
||||
|
||||
|
@ -22,10 +22,10 @@
|
|||
<div id="edit" class="mt-5 d-none">
|
||||
<form method="POST" action="/edit-Spiel">
|
||||
<input type="hidden" name="id" value="<%= spiel.id %>">
|
||||
<strong>Material: </strong><br><textarea name="material"><%= spiel.material %> </textarea><br>
|
||||
<strong>Material: </strong><br><textarea name="material"><%- spiel.material %> </textarea><br>
|
||||
<strong>Dauer: </strong><input name="dauer" value="<%=spiel.dauer %>"><%= spiel.dauer %></input><br>
|
||||
<strong>Regeln: </strong><br><textarea name="regeln"><%= spiel.regeln %> </textarea><br>
|
||||
<strong>Variationen: </strong><br><textarea name="variationen"><%= spiel.variationen %> </textarea><br>
|
||||
<strong>Regeln: </strong><br><textarea name="regeln"><%- spiel.regeln %> </textarea><br>
|
||||
<strong>Variationen: </strong><br><textarea name="variationen"><%- spiel.variationen %> </textarea><br>
|
||||
<button type="submit">Speichern</button>
|
||||
</form>
|
||||
<button class="btn btn-secondary" onclick="toggleDivs()">Zum View-Modus wechseln</button>
|
||||
|
|
Loading…
Reference in New Issue