{% extends "markettracker/base.html" %} {% load i18n %} {% block content %}

{% trans "Contract errors" %}

{% for e in errors %} {% empty %} {% endfor %}
{% trans "When" %} {% trans "Seeder" %} {% trans "Tracked" %} {% trans "Contract" %} {% trans "Error" %} {% trans "Message" %}
{{ e.created_at|date:"Y-m-d H:i" }} {{ e.owner_name }} {{ e.tracked }} {{ e.contract_id }} {{ e.get_code_display }} {{ e.message }}
{% trans "No errors." %}
{% endblock %}