{% extends "base.tree.html" %} {% load lw_forms %} {% block content-title %} {{form.instance.name}}{% endblock%} {% block content %}
{% include "dashboard/user_group_menu.html" %}
{% csrf_token %} {% for storage_redirection in group.redirections.all %}

Client storage/Shared folder: {{storage_redirection.client_path}} -> Server storage: {{storage_redirection.server_path}}

{% endfor %}

Example: 'C:' for client storage, '\\server\mypath' for shared folder

{{form_redirection|get_widget:"client_path"|append_html_attr:'class="form-control"'|safe}}

Example: 'V:'

{{form_redirection|get_widget:"server_path"|append_html_attr:'class="form-control"'|safe}}
{{form_redirection|get_widget:"group"|safe}}
{% endblock%} {% block require-js-extra %} requirejs(['pagination', 'lw-forms', 'groups'], function (Module, LwForms, Groups){ Module.init({{PAGINATION_ELEMENTS}}); LwForms.init(); }); {% endblock%}