diff --git a/apps/jars/templates/jars_conf_edit.html b/apps/jars/templates/jars_conf_edit.html
index e66be45..99085fe 100644
--- a/apps/jars/templates/jars_conf_edit.html
+++ b/apps/jars/templates/jars_conf_edit.html
@@ -11,7 +11,8 @@
-
+
+
@@ -24,5 +25,9 @@
$("#bt_view_filter").click(function() {
document.location = "{% url 'url_jars_filter' id_dev filter_id%}";
});
+
+$("#bt_cancel").click(function() {
+ document.location = "{% url 'url_jars_conf' id_dev %}";
+ });
{% endblock %}
\ No newline at end of file
diff --git a/apps/jars/templates/jars_filter.html b/apps/jars/templates/jars_filter.html
index c3a7462..4405559 100644
--- a/apps/jars/templates/jars_filter.html
+++ b/apps/jars/templates/jars_filter.html
@@ -27,7 +27,7 @@
-
+
{% endif %}
@@ -51,5 +51,9 @@
document.location = "{% url 'url_edit_jars_conf' conf.id%}";
});
+ $("#new_button").click(function() {
+ document.location = "{% url 'url_new_jars_filter' conf.id%}";
+ });
+
{% endblock %}
\ No newline at end of file
diff --git a/apps/jars/templates/jars_filter_edit.html b/apps/jars/templates/jars_filter_edit.html
index 59c14e8..18bde10 100644
--- a/apps/jars/templates/jars_filter_edit.html
+++ b/apps/jars/templates/jars_filter_edit.html
@@ -14,4 +14,8 @@
+{% endblock %}
+
+{% block extra-js%}
+
{% endblock %}
\ No newline at end of file
diff --git a/apps/jars/templates/jars_new_filter.html b/apps/jars/templates/jars_new_filter.html
new file mode 100644
index 0000000..f9fe15d
--- /dev/null
+++ b/apps/jars/templates/jars_new_filter.html
@@ -0,0 +1,8 @@
+{% extends "dev_conf_edit.html" %}
+{% load bootstrap3 %}
+{% load static %}
+{% load main_tags %}
+
+{% block extra-js%}
+
+{% endblock %}
\ No newline at end of file