snorklerjoe/CubeServer

View on GitHub
src/CubeServer-app/cubeserver_app/blueprints/admin/templates/beacon_tx_done.html.jinja2

Summary

Maintainability
Test Coverage
{% extends "base.html.jinja2" %}

{% block head %}
{{ super() }}
    <meta http-equiv="refresh" content="2;url={{ url_for('.beacon_table') }}" />
{% endblock %}

{% block title %}Beacon Tx{% endblock %}

{% block header %}
    <h4>Queued Message!</h4>
{% endblock %}

{% block content %}
    <div>
        <p>Success</p>
        <br>
        <p>
            This packet has been scheduled in the database.
            There will be a short delay before the beacon container pulls the latest updates from the database.
        </p>
    </div>
{% endblock %}

{% block scripts %}
{{ super() }}
    <script src="{{ url_for('static', filename='/js/admin.js') }}"></script>
{% endblock %}