mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 20:14:15 +00:00
29 lines
No EOL
920 B
HTML
29 lines
No EOL
920 B
HTML
{% extends "base.html" %}
|
|
{% load bootstrap4 %}
|
|
{% load font_awesome %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Add Compute" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<h2 class="page-header">{% trans "Create Compute" %}</h2>
|
|
</div>
|
|
</div>
|
|
{% bootstrap_messages %}
|
|
<div class="row">
|
|
<div class="thumbnail col-sm-10 offset-1">
|
|
<form id="create-update" action="" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form layout='horizontal' %}
|
|
</form>
|
|
<div class="form-group float-right">
|
|
<a class="btn btn-primary" href="javascript:history.back()">{% icon 'times' %} {% trans "Cancel" %}</a>
|
|
<button type="submit" form="create-update" class="btn btn-success">
|
|
{% icon 'check' %} {% trans "Save" %}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %} |