Texts and URL fixes
This commit is contained in:
parent
8e42a60f68
commit
8dbec7612b
|
@ -95,7 +95,7 @@ angular.module('ffffngAdmin').config(function(NgAdminConfigurationProvider, Rest
|
|||
.listActions(
|
||||
'<ma-edit-button entry="entry" entity="entity" size="sm"></ma-edit-button> ' +
|
||||
'<ma-delete-button entry="entry" entity="entity" size="sm"></ma-delete-button> ' +
|
||||
'<form style="display: inline-block" action="/#!/update" method="POST" target="_blank">' +
|
||||
'<form style="display: inline-block" action="/#/update" method="POST" target="_blank">' +
|
||||
'<input type="hidden" name="token" value="{{entry.values.token}}"/>' +
|
||||
'<button class="btn btn-primary btn-sm" type="submit"><i class="fa fa-external-link"></i> Open</button>' +
|
||||
'</form> ' +
|
||||
|
|
|
@ -63,7 +63,7 @@ angular.module('ffffng', [
|
|||
})
|
||||
.run(function ($location, $rootScope, config) {
|
||||
$rootScope.$on('$routeChangeSuccess', function (event, current) {
|
||||
$rootScope.title = current.$$route.title;
|
||||
$rootScope.title = current.$$route ? (current.$$route.title || '') : '';
|
||||
$rootScope.config = config;
|
||||
});
|
||||
});
|
||||
|
|
|
@ -98,10 +98,16 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="monitoring-data" ng-if="config.monitoring.enabled">
|
||||
<h3>Möchtest Du Status-E-Mails bekommen?</h3>
|
||||
<h3>Möchtest Du automatisiert Status-E-Mails bekommen?</h3>
|
||||
<i class="monitoring-icon"></i>
|
||||
<p class="help-block">
|
||||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
||||
Du kannst Dich automatisiert benachrichtigen lassen, sobald Dein Knoten längere Zeit offline ist.
|
||||
Die erste E-Mail bekommst Du nach 3 Stunden, nach einem Tag gibt es dann nochmal eine Erinnerung. Sollte
|
||||
Dein Knoten nach einer Woche immernoch offline sein, bekommst Du eine letzte Status-E-Mail.
|
||||
</p>
|
||||
<p class="help-block">
|
||||
Du kannst den automatisierten Versand von Status-E-Mails hier selbstverständlich jederzeit
|
||||
wieder deaktivieren.
|
||||
</p>
|
||||
<div class="row clearfix">
|
||||
<div class="col-md-12">
|
||||
|
@ -132,7 +138,7 @@
|
|||
<div class="message">
|
||||
<p>
|
||||
Zur Bestätigung Deiner E-Mail-Adresse schicken wir Dir nach dem Speichern Deiner Knotendaten
|
||||
eine E-Mail mit einem Bestätiguns-Link. Erst nach der Bestätigung deiner E-Mail-Adresse
|
||||
eine E-Mail mit einem Bestätigungs-Link. Erst nach der Bestätigung deiner E-Mail-Adresse
|
||||
wirst Du informiert, falls Dein Knoten längere Zeit offline ist.
|
||||
</p>
|
||||
<p>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
abschließen.
|
||||
</p>
|
||||
<p>
|
||||
Und keine Sorge: <strong>Datenschutz ist uns genauso wichtig, wie Dir.</strong>
|
||||
Und keine Sorge: <strong>Datenschutz ist uns genauso wichtig wie Dir.</strong>
|
||||
</p>
|
||||
|
||||
<f-node-form class="new-node" f-save="save" f-cancel="cancel" f-node="node" f-action="create"></f-node-form>
|
||||
|
|
|
@ -4,7 +4,7 @@ angular.module('ffffng').factory('UrlBuilder', function (_, config) {
|
|||
function formUrl(route, queryParams) {
|
||||
var url = config.server.baseUrl;
|
||||
if (route || queryParams) {
|
||||
url += '/#!/';
|
||||
url += '/#/';
|
||||
}
|
||||
if (route) {
|
||||
url += route;
|
||||
|
|
Loading…
Reference in a new issue