1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 12:04:15 +00:00
webvirtcloud/templates/common/form.html

29 lines
882 B
HTML
Raw Normal View History

{% extends "base.html" %}
2020-05-19 16:53:54 +00:00
{% load bootstrap4 %}
2020-06-15 08:46:13 +00:00
{% load icons %}
{% load i18n %}
{% block title %}{{ title }}{% endblock %}
{% block content %}
<div class="row">
<div class="col-lg-12">
<h2 class="page-header">{{ title }}</h2>
</div>
</div>
2020-05-29 13:37:49 +00:00
{% bootstrap_messages %}
<div class="row">
2020-05-19 16:53:54 +00:00
<div class="thumbnail col-sm-10 offset-1">
<form id="create-update" action="" method="post">
{% csrf_token %}
{% bootstrap_form form layout='horizontal' %}
</form>
2020-05-19 16:53:54 +00:00
<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 %}