ActionBar: Form->show_generic_error umgestellt
authorMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 17 Jan 2017 11:19:16 +0000 (12:19 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 28 Feb 2017 09:44:01 +0000 (10:44 +0100)
SL/Form.pm
templates/webpages/generic/error.html

index 600e9b8..55817db 100644 (file)
@@ -660,6 +660,16 @@ sub show_generic_error {
 
   $self->{title} = $params{title} if $params{title};
 
+  for my $bar ($::request->layout->get('actionbar')) {
+    $bar->add(
+      action => [
+        t8('Back'),
+        call      => [ 'kivi.history_back' ],
+        accesskey => 'enter',
+      ],
+    );
+  }
+
   $self->header();
   print $self->parse_html_template("generic/error", $add_params);
 
index 2baa2e3..1e23f73 100644 (file)
@@ -4,5 +4,3 @@
  <div class="message_error">[% IF title_error %][% title_error %][% ELSE %][% 'Error!' | $T8 %][% END %]
  <p class="message_error_label">[% label_error %]</p>
  </div>
-
- <p style="text-align: left;"><input type="button" class="submit" onclick="history.back()" value="[% 'Back' | $T8 %]"></p>