oxen-observer/templates/not_found.html

801 B

{% extends "_basic.html" %} {% block content %}

Not Found!

{%if type == 'tx'%}

The transaction with id {{id}} was not found on the blockchain.

{%elif type == 'sn'%}

The service node with pubkey {{id}} is not currently registered.

{%elif type == 'bad_search'%}

Invalid search request: {{id}}

Please enter a block hash, height, transaction id, or service node public key.

{%elif type == 'search'%}

Not found: {{id}}

Couldn't find a block, transaction, or service node matching your query.

{%else%}

Whoops! Couldn't find what you were looking for.

{%endif%}
{% endblock %}