2016-06-04 14:58:11 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>Knotenverwaltung - Admin-Panel</title>
|
|
|
|
<link rel="stylesheet" href="css/ng-admin.min.css">
|
2016-06-05 12:18:37 +02:00
|
|
|
|
|
|
|
<style>
|
|
|
|
.task-enabled {
|
|
|
|
color: green;
|
|
|
|
}
|
|
|
|
|
|
|
|
.task-disabled {
|
|
|
|
color: lightcoral;
|
|
|
|
text-decoration: line-through;
|
|
|
|
}
|
2016-06-07 00:21:26 +02:00
|
|
|
|
|
|
|
.monitoring-active {
|
|
|
|
color: green;
|
|
|
|
}
|
|
|
|
|
|
|
|
.monitoring-confirmation-pending {
|
|
|
|
color: lightcoral;
|
|
|
|
}
|
|
|
|
|
|
|
|
.monitoring-disabled {
|
2016-06-07 10:50:15 +02:00
|
|
|
color: lightgrey;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vpn-key-set, .coords-set {
|
|
|
|
color: green;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vpn-key-unset, .coords-unset {
|
|
|
|
color: lightgrey;
|
2016-06-07 00:21:26 +02:00
|
|
|
}
|
2016-06-05 12:18:37 +02:00
|
|
|
</style>
|
2016-06-04 14:58:11 +02:00
|
|
|
</head>
|
|
|
|
<body ng-app="ffffngAdmin">
|
|
|
|
<div ui-view></div>
|
|
|
|
|
|
|
|
<script src="js/moment-with-locales.min.js"></script>
|
|
|
|
<script src="js/ng-admin.min.js"></script>
|
2016-06-07 00:21:26 +02:00
|
|
|
<script src="js/app.js"></script>
|
|
|
|
<script src="js/validation/constraints.js"></script>
|
|
|
|
<script src="js/views/taskActionButton.js"></script>
|
2016-06-07 14:08:04 +02:00
|
|
|
<script src="js/main.js"></script>
|
|
|
|
<script src="/config.js"></script>
|
2016-06-04 14:58:11 +02:00
|
|
|
</body>
|
|
|
|
</html>
|