mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-12 22:10:16 +02:00
36 lines
1.2 KiB
HTML
36 lines
1.2 KiB
HTML
{% extends "public/base.html" %}
|
|
{% load bootstrap %}
|
|
{% load staticfiles %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}Alliance Auth - Fatlink Create{% endblock %}
|
|
|
|
{% block page_title %}{% trans "Create Fatlink" %}{% endblock page_title %}
|
|
|
|
{% block content %}
|
|
<div class="col-lg-12">
|
|
<h1 class="page-header text-center">{% trans "Create Fleet Operation" %}</h1>
|
|
|
|
<div class="container-fluid">
|
|
{% if badrequest %}
|
|
<div class="alert alert-danger" role="alert">{% trans "Bad request!" %}</div>
|
|
{% endif %}
|
|
{% for message in errormessages %}
|
|
<div class="alert alert-danger" role="alert">{{ message }}</div>
|
|
{% endfor %}
|
|
<div class="col-md-4 col-md-offset-4">
|
|
<div class="row">
|
|
<form class="form-signin" role="form" action="" method="POST">
|
|
{% csrf_token %}
|
|
{{ form|bootstrap }}
|
|
<br/>
|
|
<button class="btn btn-lg btn-primary btn-block" type="submit" name="submit_fat">{% trans "Create fatlink" %}</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock content %}
|
|
|