diff --git a/netbox/templates/extras/imageattachment_edit.html b/netbox/templates/extras/imageattachment_edit.html
new file mode 100644
index 000000000..cd7d40a8e
--- /dev/null
+++ b/netbox/templates/extras/imageattachment_edit.html
@@ -0,0 +1,16 @@
+{% extends 'generic/object_edit.html' %}
+{% load helpers %}
+
+{% block form_fields %}
+
+
+
+
+ {{ block.super }}
+{% endblock form_fields %}
diff --git a/netbox/templates/inc/profile_button.html b/netbox/templates/inc/profile_button.html
index 876ee31dc..230aa02ad 100644
--- a/netbox/templates/inc/profile_button.html
+++ b/netbox/templates/inc/profile_button.html
@@ -1,56 +1,56 @@
{% if request.user.is_authenticated %}
-
-
-
-
+
+
+
+
{% else %}
-
+
{% endif %}
diff --git a/netbox/virtualization/choices.py b/netbox/virtualization/choices.py
index 1aaaf6bf9..bb9220d09 100644
--- a/netbox/virtualization/choices.py
+++ b/netbox/virtualization/choices.py
@@ -16,10 +16,10 @@ class VirtualMachineStatusChoices(ChoiceSet):
STATUS_DECOMMISSIONING = 'decommissioning'
CHOICES = [
- (STATUS_OFFLINE, 'Offline', 'warning'),
- (STATUS_ACTIVE, 'Active', 'success'),
- (STATUS_PLANNED, 'Planned', 'info'),
- (STATUS_STAGED, 'Staged', 'primary'),
- (STATUS_FAILED, 'Failed', 'danger'),
- (STATUS_DECOMMISSIONING, 'Decommissioning', 'warning'),
+ (STATUS_OFFLINE, 'Offline', 'gray'),
+ (STATUS_ACTIVE, 'Active', 'green'),
+ (STATUS_PLANNED, 'Planned', 'cyan'),
+ (STATUS_STAGED, 'Staged', 'blue'),
+ (STATUS_FAILED, 'Failed', 'red'),
+ (STATUS_DECOMMISSIONING, 'Decommissioning', 'yellow'),
]