Domain Management System

Upload CSV File

{% if uploads %}

Upload History

{% for upload in uploads %} {% endfor %}
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
{% endif %}

Domain List

API Endpoints

Get all uploads: /api/uploads

Get all domains: /api/slds

Get domains by SLD: /api/slds/{sld}

Filter by upload: /api/slds?upload_id={upload_id}

{% if domains %}

Found {{ domains|length }} domains{% if request.query_params.get('upload_id') %} in this upload{% endif %}.

{% for item in domains %} {% endfor %}
SLD TLD Subdomain Full Domain Upload Date
{{ item.sld }} {{ item.tld }} {{ item.get('subdomain', 'N/A') }} {{ item.full_domain }} {{ item.timestamp.replace('T', ' ').split('.')[0] if item.get('timestamp') else 'N/A' }}
{% else %}

No domains found. Please upload a CSV file to get started.

{% endif %}