summaryrefslogtreecommitdiffstats
path: root/templates/page-tgz-list.html
blob: 65654766f54e73a61c95c877e464e53ba14d315c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div class="container">
	{{#files}}
		<div class="row well well-sm">{{file}}</div>
	{{/files}}
	{{^files}}
		<div class="row well well-sm">Keine Konfigurationspakete gefunden!</div>
	{{/files}}
	<a class="btn btn-lg btn-primary" href="?do=sysconfig&amp;action=remotelist">Konfigurationen herunterladen</a>
	<a class="btn btn-lg btn-primary" href="#" data-toggle="collapse" data-target="#uploadform">Eigene Konfiguration hochladen</a>
	<div class="collapse" id="uploadform">
		<div class="well well-sm" style="margin: 5px 0px">
			<form method="post" action="?do=sysconfig" enctype="multipart/form-data">
				<input type="file" size="40" class="form-control" name="customtgz">
				<input type="hidden" name="action" value="upload">
				<input type="hidden" name="token" value="{{token}}">
				<button class="btn btn-primary form-control-addon" type="submit">Hochladen</button>
			</form>
		</div>
	</div>
</div>