{% extends "base.html" %} {% block styles %} {{ super() }} </style> {% endblock %} {% block page_content %} <div class="row"> {% include "admin/admin_tasks.html" %} <div class="col-md-12"> <div class="panel panel-danger" id="deployments"> <div class="panel-heading">Deployments</div> <div class="panel-body"><p> <table class="table table-hover table-striped table-condensed cf"> <thead> <tr> <th>Cube ID</th> <th>Alias</th> <th>CPU</th> <th>Mem</th> <th>HDD</th> <th>Owner</th> </tr> </thead> <tbody> {% for deploy in deployments %} <tr> <td>{% if deploy.enabled == True %}<font color="green">{% else %}<font color="red">{% endif %}{{ deploy.machine_id }}</td> <td>{{ deploy.machine_alias }}</font></td> <td>{{ deploy.machine_cpu }} Cores</td> <td>{{ deploy.machine_mem }} MB</td> <td>{{ deploy.machine_hdd }} GB</td> <td><a href="{{ url_for('admin.dashboard', user_pid=deploy.user_id) }}">{{ deploy.owner.email }}</a></td> {% endfor %} </tbody> </table> </div> </div> </div> <div class="col-md-12"> <div class="panel panel-danger" id="services"> <div class="panel-heading">Services</div> <div class="panel-body"><p> <table class="table table-hover table-striped table-condensed cf"> <thead> <tr> <th>Category</th> <th>Description</th> <th>Price</th> <th>Period (Months)</th> <th>Last Charged</th> <th>Owner</th> </tr> </thead> <tbody> {% for service in services %} <tr> <td>{{ service.category }}</td> <td>{{ service.description }}</td> <td>{{ service.price }}</td> <td>{{ service.period }}</td> <td>{{ moment(service.date_last_charge).format('lll') }}</td> <td><a href="{{ url_for('admin.dashboard', user_pid=service.user_id) }}">{{ service.owner.email }}</a></td> </tr> {% endfor %} </tbody> </table> </div> </div> </div> <div class="col-md-12"> <div class="panel panel-danger" id="domains"> <div class="panel-heading">Domains</div> <div class="panel-body"><p> <table class="table table-hover table-striped table-condensed cf"> <thead> <tr> <th>Name</th> <th>Expiry Date</th> <th>Owner</th> </tr> </thead> <tbody> {% for domain in domains %} <tr> <td><b><a href="http://{{ domain.fqdn }}">{{ domain.fqdn }}</a></b></td> <td>{{ domain.date_expire }}</td> <td><a href="{{ url_for('admin.dashboard', user_pid=domain.user_id) }}">{{ domain.owner.email }}</a></td> </tr> {% endfor %} </tbody> </table> </div> </div> </div> <div class="col-md-12"> <div class="panel panel-danger" id="addresses"> <div class="panel-heading">Addresses</div> <div class="panel-body"><p> <table class="table table-hover table-striped table-condensed cf"> <thead> <tr> <th>IP</th> <th>MAC Addr.</th> <th>Reverse DNS</th> <th>Owner</th> </tr> </thead> <tbody> {% for address in addresses %} <tr> <td>{{ address.ip }}</td> <td>{{ address.mac }}</td> <td>{{ address.rdns }}</td> <td><a href="{{ url_for('admin.dashboard', user_pid=address.user_id) }}">{{ address.owner.email }}</a></td> {% endfor %} </tr> </tbody> </table> </div> </div> </div> </div> <div class="row"> </div> </div> {% endblock %}