mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 03:54:15 +00:00
25 lines
823 B
HTML
25 lines
823 B
HTML
{% load static %}
|
|
{% load i18n %}
|
|
{% include 'header.html' %}
|
|
<body>
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
|
|
{% include 'sidebar.html' %}
|
|
|
|
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
|
|
<button type="button" class="btn btn-success pull-right"><span class="glyphicon glyphicon-plus" aria-hidden="true"></span></button>
|
|
<h1 class="page-header">Computes</h1>
|
|
|
|
<div class="alert alert-danger alert-dismissible" role="danger">
|
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
<strong>Error:</strong> Better check yourself, you're not looking too good.
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% include 'footer.html' %}
|