2015-01-25 00:40:43 +01:00
|
|
|
{% extends "domains/base.html" %}
|
|
|
|
{% load i18n crispy_forms_tags %}
|
2023-04-16 22:11:32 +02:00
|
|
|
{% block title %}{{ block.super }} -
|
|
|
|
{% blocktranslate with package=hostingpackage.name full_name=customer.get_full_name trimmed %}
|
|
|
|
Add Domain to Hosting Package {{ package }} of Customer {{ full_name }}
|
|
|
|
{% endblocktranslate %}{% endblock title %}
|
|
|
|
{% block page_title %}{% blocktranslate with package=hostingpackage.name full_name=customer.get_full_name trimmed %}
|
|
|
|
Add Domain to Hosting Package {{ package }} of Customer {{ full_name }}
|
|
|
|
{% endblocktranslate %}{% endblock page_title %}
|
2015-01-25 00:40:43 +01:00
|
|
|
|
|
|
|
{% block content %}
|
2023-04-16 22:11:32 +02:00
|
|
|
{% crispy form %}
|
2015-01-25 00:40:43 +01:00
|
|
|
{% endblock content %}
|
|
|
|
|
|
|
|
{% block extra_js %}
|
2023-04-16 22:11:32 +02:00
|
|
|
<script type="text/javascript">
|
|
|
|
document.addEventListener("DOMContentLoaded", function () {
|
|
|
|
document.querySelectorAll("input[type=text]")[0].focus().select();
|
|
|
|
});
|
|
|
|
</script>
|
2015-01-25 00:40:43 +01:00
|
|
|
{% endblock extra_js %}
|