diff --git a/frontends/etiquette_flask/templates/tags.html b/frontends/etiquette_flask/templates/tags.html index 9b89326..9103e69 100644 --- a/frontends/etiquette_flask/templates/tags.html +++ b/frontends/etiquette_flask/templates/tags.html @@ -3,7 +3,7 @@ {% import "header.html" as header %} {% import "tag_object.html" as tag_object %} - {% if specific is none %} + {% if specific_tag is none %} Tags {% else %} Tag {{specific_tag.name}} @@ -42,6 +42,12 @@ body background-color: rgba(0, 0, 0, 0.1); } +#description_text +{ + font-family: initial; + padding: 8px; + background-color: rgba(0, 0, 0, 0.1); +} #editor_area { display: flex; @@ -73,8 +79,23 @@ body
{% if specific_tag is not none %} -

{{specific_tag.name}}

-

{{specific_tag.description}}

+

+ + {{-specific_tag.name-}} + +

+
+                {{-specific_tag.description-}}
+            
{% endif %}