Usunięcie nieużywanych już paneli.
[redakcja.git] / project / templates / explorer / panels / parse_error.html
diff --git a/project/templates/explorer/panels/parse_error.html b/project/templates/explorer/panels/parse_error.html
deleted file mode 100644 (file)
index 027e8b4..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-<h2>Podczas otwierania panelu "{{ panel_name }}" wystąpił przetwarzania pliku źródłowego:</h2>
-<p><b>{{ exception_type }}</b></p>
-<p>{{ exception.message }}</p>
-
-<button id="try-again-button" type="button">Try Again</button>
-
-<script type="text/javascript" charset="utf-8">
-panel_hooks = {
-    load: function() {
-        var self = this;
-
-        $('#try-again-button').click(function() {
-            self.load(self.current_url);
-        });      
-    },
-    refresh: function() {
-        return true; // error page is static
-    },
-    dirty: function() {
-        return true; // and it doesn't get dirty 
-    }
-};
-</script>