from django.urls import path from . import views urlpatterns = ( path('/', views.jars_conf, name='url_jars_conf'), path('/edit/', views.jars_conf_edit, name='url_edit_jars_conf'), path('/change_filter/', views.change_filter, name='url_change_jars_filter'), path('/change_filter//', views.change_filter, name='url_change_jars_filter'), path('/import/', views.import_file, name='url_import_jars_conf'), path('/read/', views.read_conf, name='url_read_jars_conf'), path('/get_log/', views.get_log, name='url_get_jars_log'), )