{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% block title %}{% if folder %}{{ _("Edit Folder") }}{% else %}{{ _("New Folder") }}{% endif %} - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if folder %} {{ _("Back to Folder")}} {% elif parent %} {{ _("Back to Folder")}} {% else %} {{ _("Back to Dashboard")}} {% endif %}

{% if folder %} {{ _("Edit Folder")}} {% else %} {{ _("New Folder")}} {% endif %}

{% if folder %} {{ _("Update folder information")}} {% else %} {{ _("Create a new folder to organize your documents")}} {% endif %}

{% csrf_token %}
{{ _("Folder Information")}}
{{ _("Leave empty to create at root level")}}
{{ _("FontAwesome icon class")}}
{{ _("Hex color code")}}
{{ _("Display order")}}
{{ _("Access Control")}}
{% for choice in form.access_roles %}
{{ choice.tag }}
{% endfor %}
{{ _("Leave all unchecked to make folder accessible to all users")}}
{{ _("Uncheck to hide this folder")}}
{{ _("Folder Organization")}}

{{ _("Create folders to organize documents by category, department, or any structure that works for your team.")}}


  • {{ _("Use meaningful names in both languages")}}
  • {{ _("Add descriptions for clarity")}}
  • {{ _("Set access roles to control visibility")}}
  • {{ _("Use icons and colors for visual organization")}}
{% if folder %}
{{ _("Current Folder")}}
  • {{ _("Created:") }} {{ folder.created_at|date:"M d, Y" }}
  • {{ _("Last Modified:") }} {{ folder.updated_at|date:"M d, Y" }}
  • {{ _("Documents:") }} {{ folder.documents.count }}
  • {{ _("Subfolders:") }} {{ folder.subfolders.count }}
{% endif %}
{% if folder %} {{ _("Cancel")}} {% elif parent %} {{ _("Cancel")}} {% else %} {{ _("Cancel")}} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}