{% extends "base.html" %} {% block title %}Import / Export - IT Asset Tracker{% endblock %} {% block content %}
Export Backup

Download a complete backup of all devices, people, and transactions (including signatures) as a JSON file.

Download JSON Backup
Restore from Backup

Restore the database from a previously exported JSON backup file.

Warning: This will replace ALL existing data in the database.

Import from Excel

Import device and checkout data from an Excel file (.xlsx or .xls).

Expected Column Headers

The import will attempt to match these columns (case-insensitive):

  • Name - Person's name (required)
  • Department - Maps to location
  • Phone - Person's phone
  • Checkout Date - Date device was checked out
  • Return Date - Date device was returned (if applicable)
  • Brand - Device make (required)
  • Model - Device model (required)
  • Serial # - Serial number (required)
  • Asset # - Asset tag (required)
{% endblock %}