mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-08 22:50:26 +00:00
e0f939813e
First pass at HTML conversion from Master/Slave to Primary/Secondary (TODO: Backend) Start work on migrating admin_auth_settings to Bootstrap v4 admin_setting_basic -> Change plain text for On/Off to toggles in current state, and changed "Action" column to the opposite toggle of current setting dashboard_domain -> Reduce deuplicate code for the new dropdown-menu for Actions register -> Add exclamation icon in front of error text template_add -> changed box-body to card-body user_profile -> Fixed tab naviation for Bootstrap v4. Tabs also fade between changes
116 lines
3.8 KiB
HTML
116 lines
3.8 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% set active_page = "admin_domain_template" %}
|
|
|
|
{% block title %}
|
|
<title>
|
|
Create Template - {{ SITE_NAME }}
|
|
</title>
|
|
{% endblock %}
|
|
|
|
{% block dashboard_stat %}
|
|
<div class="content-header">
|
|
<div class="container-fluid">
|
|
<div class="row mb-2">
|
|
<div class="col-sm-6">
|
|
<h1 class="m-0 text-dark">
|
|
Template
|
|
<small>Create</small>
|
|
</h1>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<ol class="breadcrumb float-sm-right">
|
|
<li class="breadcrumb-item"><a href="{{ url_for('admin.templates') }}">Templates</a></li>
|
|
<li class="breadcrumb-item active">Create</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="content">
|
|
<div class="container-fluid">
|
|
{% with errors = get_flashed_messages(category_filter=["error"]) %}
|
|
{% if errors %}
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="alert alert-danger alert-dismissible">
|
|
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
|
<h4>
|
|
<i class="icon fa fa-ban"></i> Error!
|
|
</h4>
|
|
<div class="alert-message block-message error">
|
|
<a class="close" href="#">x</a>
|
|
<ul>
|
|
{%- for msg in errors %}
|
|
<li>{{ msg }}</li>
|
|
{% endfor -%}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endwith %}
|
|
<div class="row">
|
|
<div class="col-4">
|
|
<div class="card card-primary">
|
|
<div class="card-header with-border">
|
|
<h3 class="card-title">Create new template</h3>
|
|
</div>
|
|
<form role="form" method="post" action="{{ url_for('admin.create_template') }}">
|
|
<input type="hidden" name="_csrf_token" value="{{ csrf_token() }}">
|
|
<div class="card-body">
|
|
<div class="form-group">
|
|
<input type="text" class="form-control" name="name" id="name"
|
|
placeholder="Enter a valid template name (required)">
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="text" class="form-control" name="description" id="description"
|
|
placeholder="Enter a template description (optional)">
|
|
</div>
|
|
</div>
|
|
<div class="card-footer">
|
|
<button type="submit" class="btn btn-primary">Submit</button>
|
|
<button type="button" class="btn btn-default"
|
|
onclick="window.location.href='{{ url_for('admin.templates') }}'">Cancel</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="col-8">
|
|
<div class="card card-primary">
|
|
<div class="card-header with-border">
|
|
<h3 class="card-title">Help with creating a new template</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<dl class="dl-horizontal">
|
|
<dt>Template name</dt>
|
|
<dd>Enter your template name, this is the name of the template that
|
|
will be shown to users. The name should not have any spaces but
|
|
can have symbols.</dd>
|
|
<dt>Template description</dt>
|
|
<dd>Enter your template description, this is to help better
|
|
identify the template.</dd>
|
|
</dl>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|
|
{% block extrascripts %}
|
|
<script>
|
|
$("input[name=radio_type]").change(function () {
|
|
var type = $(this).val();
|
|
if (type == "secondary") {
|
|
$("#domain_primary_address_div").show();
|
|
} else {
|
|
$("#domain_primary_address_div").hide();
|
|
}
|
|
});
|
|
</script>
|
|
{% endblock %}
|