HH/templates/analytics/partials/kpi_generate_success.html
ismail c5f76b3855
Some checks are pending
Build and Push Docker Image / build (push) Waiting to run
updates
2026-05-11 14:45:30 +03:00

24 lines
904 B
HTML

{%load i18n%}
<div class="bg-green-50 border border-green-200 rounded-lg p-4 animate-fade-in">
<div class="flex items-start gap-3">
<i data-lucide="check-circle" class="w-5 h-5 text-green-600 mt-0.5"></i>
<div>
<p class="text-sm text-green-800 font-medium">{{ message }}</p>
{% if report %}
<p class="text-sm text-green-700 mt-1">
{% trans "You can now view the report or generate another one." %}
</p>
<div class="flex gap-2 mt-3">
<a href="{% url 'analytics:kpi_report_detail' report.id %}" class="hh-btn hh-btn-primary text-sm py-1.5 px-3">
{% trans "View Report" %}
</a>
<a href="{% url 'analytics:kpi_report_list' %}" class="hh-btn hh-btn-secondary text-sm py-1.5 px-3">
{% trans "All Reports" %}
</a>
</div>
{% endif %}
</div>
</div>
</div>
<script>lucide.createIcons();</script>