{% extends "_base.html" %} {% load i18n %} {% load sekizai_tags %} {% load labelbase_tags %} {% load backgroundtask_tags %} {% load attachments_tags %} {% block title %}{{ object.type }} {{ object.ref }}{% endblock %} {% block content %} {% get_attachments_for object.get_label_attachment as my_attachments %}
{% if output.last_error %}
Ouch! Got "{{ output.last_error.message }}{% if output.last_error.code %} (code {{ output.last_error.code }}){% endif %}" from Electrum.
{% endif %} {% is_label_id_in_queue object.id as is_in_queue %} {% if is_in_queue %}
Output in queue! This output is currently in the processing queue. It will be checked shortly.
{% else %} {% if object.type == "output" %} {% if output.get_spent_status == "spent" %}
Output spent! Blockchain records indicate that this output has been spent in another transaction.
{% elif output.get_spent_status == "unspent" %}
Output unspent! Blockchain records indicate that this output has not been spent yet.
{% elif output.get_spent_status == "unconfirmed" %}
Output unconfirmed! Blockchain records indicate that this output has not been confirmed yet.
{% else %}
Unknown status: The status of this output could not be determined.
{% endif %} {% endif %} {% endif %} {% block label_edit_content %} {% endblock %}
{% endblock %}