{% extends "base_authenticated.html" %} {% block title %}Export Configuration - QR Code Management{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Export Configuration

Customize your attendance report export with selected columns, custom names, and column ordering

{% if filters.date_from or filters.date_to or filters.location_filter or filters.employee_filter or filters.project_filter %}

Applied Filters

{% if filters.date_from %} From: {{ filters.date_from }} {% endif %} {% if filters.date_to %} To: {{ filters.date_to }} {% endif %} {% if filters.location_filter %} Location: {{ filters.location_filter }} {% endif %} {% if filters.employee_filter %} Employee: {{ filters.employee_filter }} {% endif %} {% if filters.project_filter %} Project: {{ filters.project_filter }} {% endif %}
{% endif %}

Select & Order Columns for Export

How to Use

  • Select columns: Check the boxes for columns you want to export
  • Customize names: Edit the "Export as" field to change column headers
  • Reorder columns: Drag & drop the selected columns to change their order in the Excel file
  • Preview: See how your export will look in the preview below

Available Columns

{% for column in available_columns %}
{% endfor %}

Export Preview

Select columns above to see preview

Your column preferences and order will be saved for next time

{% endblock %} {% block extra_scripts %} {% endblock %}