+
diff --git a/allianceauth/optimer/templates/optimer/management.html b/allianceauth/optimer/templates/optimer/management.html
index 95abf969..5f11779d 100644
--- a/allianceauth/optimer/templates/optimer/management.html
+++ b/allianceauth/optimer/templates/optimer/management.html
@@ -1,5 +1,4 @@
{% extends "allianceauth/base.html" %}
-{% load static %}
{% load i18n %}
{% get_current_language as LANGUAGE_CODE %}
@@ -42,7 +41,7 @@
{% include 'bundles/moment-js.html' with locale=True %}
{% include 'bundles/timers-js.html' %}
- {% else %}
-
+
{% endif %}
{% else %}
{% if debug %}
-
+
{% else %}
-
+
{% endif %}
{% endif %}
diff --git a/allianceauth/templates/bundles/clipboard-js.html b/allianceauth/templates/bundles/clipboard-js.html
index bee9d097..2827e812 100644
--- a/allianceauth/templates/bundles/clipboard-js.html
+++ b/allianceauth/templates/bundles/clipboard-js.html
@@ -1,3 +1,3 @@
-
+
diff --git a/allianceauth/templates/bundles/filterdropdown-js.html b/allianceauth/templates/bundles/filterdropdown-js.html
index 5ce5ce98..677fa536 100644
--- a/allianceauth/templates/bundles/filterdropdown-js.html
+++ b/allianceauth/templates/bundles/filterdropdown-js.html
@@ -1,3 +1,3 @@
{% load static %}
-
+
diff --git a/allianceauth/templates/bundles/moment-js.html b/allianceauth/templates/bundles/moment-js.html
index 56cab334..94dcfbe6 100644
--- a/allianceauth/templates/bundles/moment-js.html
+++ b/allianceauth/templates/bundles/moment-js.html
@@ -2,6 +2,6 @@
{% if locale and LANGUAGE_CODE != 'en' %}
-
+
{% endif %}
diff --git a/allianceauth/timerboard/migrations/0005_alter_timer_planet_moon.py b/allianceauth/timerboard/migrations/0005_alter_timer_planet_moon.py
new file mode 100644
index 00000000..52c21ad9
--- /dev/null
+++ b/allianceauth/timerboard/migrations/0005_alter_timer_planet_moon.py
@@ -0,0 +1,18 @@
+# Generated by Django 4.0.6 on 2022-07-18 17:31
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('timerboard', '0004_timer_type'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='timer',
+ name='planet_moon',
+ field=models.CharField(blank=True, default='', max_length=254),
+ ),
+ ]
diff --git a/allianceauth/timerboard/models.py b/allianceauth/timerboard/models.py
index 7261ca45..bceafa29 100755
--- a/allianceauth/timerboard/models.py
+++ b/allianceauth/timerboard/models.py
@@ -26,7 +26,7 @@ class Timer(models.Model):
details = models.CharField(max_length=254, default="")
system = models.CharField(max_length=254, default="")
- planet_moon = models.CharField(max_length=254, default="")
+ planet_moon = models.CharField(max_length=254, blank=True, default="")
structure = models.CharField(max_length=254, default="")
timer_type = models.CharField(
max_length=254,
diff --git a/allianceauth/timerboard/templates/timerboard/view.html b/allianceauth/timerboard/templates/timerboard/view.html
index b22ba106..d7637b42 100644
--- a/allianceauth/timerboard/templates/timerboard/view.html
+++ b/allianceauth/timerboard/templates/timerboard/view.html
@@ -540,7 +540,7 @@
{% include 'bundles/moment-js.html' with locale=True %}
{% include 'bundles/timers-js.html' %}
-