summaryrefslogtreecommitdiffstats
path: root/templates/page-news.html
blob: c9a2ccb3fed70029ecb82617cbed779b28af7011 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<div class="container">
	<p>Hier haben Sie die Möglichkeit, die von bwLehrpool-Clients angezeigten News zu editieren.</p>
	<div class="panel panel-default">
		<div class="panel-heading">
			Aktive News
		</div>
		<div class="panel-body">
			<form action="?do=News&amp;action=save" method="post">
				<div class="form-group">
					<label for="news-title-id">Titel</label>
					<input type="text" name="news-title" id ="news-title-id" class="form-control" placeholder="Willkommen!" value="{{latestTitle}}">
				</div>
				<div class="form-group">
					<label for="news-content-id">Inhalt</label>
					<textarea name="news-content" id ="news-content-id" class="form-control" rows="5" cols="30"  placeholder="Willkommen beim bwLehrpool-System!">{{latestContent}}</textarea>
				</div>
				<p>Letzte Aktualisierung: {{latestDate}}</p>
				<button class="btn btn-primary btn-sm" type="submit"><span class="glyphicon glyphicon-save"></span> Speichern</button>
				<a class="btn btn-primary btn-sm" href="?do=news&amp;action=clear"><span class="glyphicon glyphicon-trash"></span> Leeren</a>
				<input type="hidden" name="token" value="{{token}}">
			</form>
		</div>
	</div>

	<div class="panel panel-default">
		<div class="panel-heading">
			Alte News
		</div>
		<div class="panel-body">
			<div class="table-responsive">
				<form method="post" action="?do=News&amp;action=delete">
					<input type="hidden" name="token" value="{{token}}">
					<table class="table table-stripped table-condensed">
						<thead>
							<tr>
								<th>Datum</th>
								<th>Titel</th>
								<th>Inhalt</th>
								<th></th>
							</tr>
						</thead>
						<tbody>
							{{#list}}
							<tr {{#active}}class="active"{{/active}}>
								<td class="text-left nowrap">{{date}}</td>
								<td class="slx-ellipsis">{{title}}</td>
								<td class="slx-ellipsis">{{content}}</td>
								<td>
									<a class="btn btn-primary btn-xs" href="?do=news&amp;newsid={{newsid}}&amp;action=show"><span class="glyphicon glyphicon-share-alt"></span> Verwenden</a>
									<button class="btn btn-danger btn-xs" type="submit" name="newsid" value="{{newsid}}"><span class="glyphicon glyphicon-remove"></span> Löschen</button>
								</td>
							</tr>
							{{/list}}
						</tbody>
					</table>
				</form>
			</div>
		</div>
	</div>
</div>