2022-01-11 18:47:55 +00:00
|
|
|
{% extends 'notifications/items/layout.html' %}
|
2021-10-02 16:50:48 +00:00
|
|
|
{% load i18n %}
|
|
|
|
|
2021-10-02 18:24:07 +00:00
|
|
|
{% block primary_link %}{% spaceless %}
|
|
|
|
{% url 'import-status' notification.related_import.id %}
|
|
|
|
{% endspaceless %}{% endblock %}
|
|
|
|
|
2021-10-02 16:50:48 +00:00
|
|
|
{% block icon %}
|
|
|
|
<span class="icon icon-list"></span>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block description %}
|
|
|
|
{% url 'import-status' notification.related_import.id as url %}
|
|
|
|
{% blocktrans %}Your <a href="{{ url }}">import</a> completed.{% endblocktrans %}
|
|
|
|
{% endblock %}
|