diff --git a/templates/forms/_field.html b/templates/forms/_field.html
index 120724e..740432d 100644
--- a/templates/forms/_field.html
+++ b/templates/forms/_field.html
@@ -5,7 +5,7 @@
{% if field.help_text %}
- {{ field.help_text }}
+ {{ field.help_text|linebreaksbr }}
{% endif %}
{{ field.errors }}
diff --git a/templates/settings/_settings_system_menu.html b/templates/settings/_settings_system_menu.html
index fb4da02..9206045 100644
--- a/templates/settings/_settings_system_menu.html
+++ b/templates/settings/_settings_system_menu.html
@@ -1,3 +1,5 @@
diff --git a/templates/settings/settings_system_domain_create.html b/templates/settings/settings_system_domain_create.html
new file mode 100644
index 0000000..54d3640
--- /dev/null
+++ b/templates/settings/settings_system_domain_create.html
@@ -0,0 +1,39 @@
+{% extends "base.html" %}
+
+{% block title %}Add Domain - System Settings{% endblock %}
+
+{% block content %}
+ {% block menu %}
+ {% include "settings/_settings_system_menu.html" %}
+ {% endblock %}
+
+{% endblock %}
diff --git a/templates/settings/settings_system_domain_delete.html b/templates/settings/settings_system_domain_delete.html
new file mode 100644
index 0000000..220bbb9
--- /dev/null
+++ b/templates/settings/settings_system_domain_delete.html
@@ -0,0 +1,33 @@
+{% extends "base.html" %}
+
+{% block title %}Delete {{ domain.domain }} - System Settings{% endblock %}
+
+{% block content %}
+ {% block menu %}
+ {% include "settings/_settings_system_menu.html" %}
+ {% endblock %}
+
+
+
+{% endblock %}
diff --git a/templates/settings/settings_system_domain_edit.html b/templates/settings/settings_system_domain_edit.html
new file mode 100644
index 0000000..c05d5d5
--- /dev/null
+++ b/templates/settings/settings_system_domain_edit.html
@@ -0,0 +1,19 @@
+{% extends "base.html" %}
+
+{% block title %}{{ domain.domain }} - System Settings{% endblock %}
+
+{% block content %}
+ {% block menu %}
+ {% include "settings/_settings_system_menu.html" %}
+ {% endblock %}
+
+{% endblock %}
diff --git a/templates/settings/settings_system_domains.html b/templates/settings/settings_system_domains.html
new file mode 100644
index 0000000..dccde65
--- /dev/null
+++ b/templates/settings/settings_system_domains.html
@@ -0,0 +1,28 @@
+{% extends "base.html" %}
+
+{% block title %}{{ section.title }} - System Settings{% endblock %}
+
+{% block content %}
+ {% block menu %}
+ {% include "settings/_settings_system_menu.html" %}
+ {% endblock %}
+
+{% endblock %}
--
cgit v1.2.3