Add new rule and tags

This commit is contained in:
Retspen
2015-03-03 16:53:10 +02:00
parent 5960e94da5
commit 8f5ccb3519
13 changed files with 156 additions and 27 deletions

27
templates/interfaces.html Normal file
View File

@@ -0,0 +1,27 @@
{% extends "base.html" %}
{% load i18n %}
{% block title %}{% trans "Interfaces" %} - {{ compute.name }}{% endblock %}
{% block content %}
<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">
{% include "create_stg_block.html" %}
<h1 class="page-header">{{ compute.name }}</h1>
{% include 'compute_block_link.html' %}
{% include 'errors_block.html' %}
<div class="row">
</div>
</div>
</div>
</div>
{% endblock %}