| Date | Filename | Description | Domains | DNS Records | View | Delete |
|---|---|---|---|---|---|---|
| {{ upload.timestamp.replace('T', ' ').split('.')[0] }} | {{ upload.filename }} | {{ upload.description or "N/A" }} | {{ upload.domains_count }} | {{ upload.records_count }} | View | Delete |
Get all uploads: /api/uploads
Get all domains: /api/domains
Get only base domains: /api/base-domains (simplified format: {"domain": "example.com", "timestamp": "..."})
Get domains by name: /api/domains/{domain}
Filter by upload: /api/domains?upload_id={upload_id}
Show base domains only: /api/domains?base_domains_only=true
Found {{ domains|length }} domains{% if request.query_params.get('upload_id') %} in this upload{% endif %}.
| Domain | {% if not base_domains_only %}Base Domain | {% endif %}Upload Date |
|---|---|---|
| {{ item.full_domain }} | {% if not base_domains_only %}{% if item.base_domain != item.full_domain %}{{ item.base_domain }}{% else %}Same as domain{% endif %} | {% endif %}{{ item.timestamp.replace('T', ' ').split('.')[0] if item.get('timestamp') else 'N/A' }} |
No domains found. Please upload a CSV file to get started.
{% endif %}