diff --git a/markdownblog/markdownblog/static/order_style.css b/markdownblog/markdownblog/static/order_style.css
index b27ec3f..64ef354 100644
--- a/markdownblog/markdownblog/static/order_style.css
+++ b/markdownblog/markdownblog/static/order_style.css
@@ -1,7 +1,3 @@
-.topic_list {
-
-}
-
.topic_list_element {
box-shadow: 3px 3px 11px 4px rgb(231, 231, 231);
-webkit-box-shadow: 3px 3px 11px 4px rgb(231, 231, 231);
@@ -16,4 +12,14 @@
-moz-box-shadow: 3px 3px 11px 4px rgb(231, 231, 231);
padding: 0.5em 0.5em 0.5em 1em;
margin: 2em 0.5em 0.5em 0;
+}
+
+.btn-danger {
+ background-color: #dc3545 !important;
+ margin-left: 3em;
+}
+
+span {
+ display: block !important;
+ margin: auto;
}
\ No newline at end of file
diff --git a/markdownblog/markdownblog/templates/blog/order.html b/markdownblog/markdownblog/templates/blog/order.html
index a38a89a..ac79ad4 100644
--- a/markdownblog/markdownblog/templates/blog/order.html
+++ b/markdownblog/markdownblog/templates/blog/order.html
@@ -19,6 +19,11 @@
{{ post }}
+
+
+
{% endif %}
{% endfor %}
diff --git a/markdownblog/markdownblog/templates/blog/tree_view_template.html b/markdownblog/markdownblog/templates/blog/tree_view_template.html
index e36e30a..0237b0b 100644
--- a/markdownblog/markdownblog/templates/blog/tree_view_template.html
+++ b/markdownblog/markdownblog/templates/blog/tree_view_template.html
@@ -1,6 +1,11 @@
{% load tree_utils %}
{{ topic.name }}
+
+
+
{% if topic|has_children %}
{% for child in topic|all_children %}
@@ -16,6 +21,11 @@
-
{{ post }}
+
+
+
{% endif %}
{% endfor %}
diff --git a/markdownblog/markdownblog/urls.py b/markdownblog/markdownblog/urls.py
index 9e9f6e8..29fdaed 100644
--- a/markdownblog/markdownblog/urls.py
+++ b/markdownblog/markdownblog/urls.py
@@ -4,5 +4,5 @@ from django.urls import path, include
urlpatterns = [
path('', include('blog.urls')),
path('admin/', admin.site.urls),
- path('auth/', include('django.contrib.auth.urls'))
+ path('accounts/', include('django.contrib.auth.urls'))
]