dashboard.html 1.11 KB
{% extends "layout-with-topbar.html" %}

{% block content %}

<div id="paused-or-running" class="panel panel-default">
    
    <div class="panel-heading">
        <h3>Pause and Resume</h3>
    </div>
    
    <div class="panel-body">
    {% if matrix.pause %}
    
        
        <p> System paused. Click the button to resume it.</p> 
        
        <div class="pull-right">
            <a href="/resume" class="btn btn-primary">Resume</a>
        </div>

    
    {% else %}
    
        <p> System is running. Click the button to pause it</p> 
        
        <div class="pull-right">
            <a href="/pause" class="btn btn-primary">Pause</a>
        </div>
    
    {% endif %}
    </div>
    
</div>

<div id="terminate" class="panel panel-default">
    
    <div class="panel-heading">
        <h3>Process Termination</h3>
    </div>
    
    <div class="panel-body">
        <p>Click the button to terminate (or restart) the gateway.</p>
        
        <div class="pull-right">
            <a href="/ask-terminate" class="btn btn-danger">Terminate / Restart</a>
        </div>
    </div>
    
</div>

{% endblock %}