🔄 Django DB Sync Report

Database: {{ database_name }} | Generated: {{ timestamp }}

{{ stats.success_count }}
Successful
{{ stats.warning_count }}
Warnings
{{ stats.error_count }}
Errors
{{ stats.total_models }}
Total Models
{% if results %} {% for model_name, result in results.items %}
{{ model_name }} {{ result.status }}
{% if result.actions %}

📋 Actions Performed:

    {% for action in result.actions %}
  • {{ action }}
  • {% endfor %}
{% endif %} {% if result.warnings %}

⚠️ Warnings:

    {% for warning in result.warnings %}
  • !
    {{ warning }}
  • {% endfor %}
{% endif %} {% if result.errors %}

❌ Errors:

    {% for error in result.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% endfor %} {% else %}

All Models in Sync!

No changes were needed for any models in your database.

{% endif %}