diff --git a/templates/partials/exercise.html b/templates/partials/exercise.html
index ee4ee49..72edcd5 100644
--- a/templates/partials/exercise.html
+++ b/templates/partials/exercise.html
@@ -1,19 +1,30 @@
-
-
+
+
{% if is_edit|default(false, true) == false %}
- {{ name }}
+
+
{{ name }}
+
+
+ {% for attr in attributes %}
+
+ {{ attr.attribute_name }}
+
+ {% endfor %}
+
+
{% else %}
{% endif %}
-
+
{% if is_edit|default(false, true) == false %}
{% for attr in attributes %}
{{ attr.attribute_name }}
@@ -22,8 +33,8 @@
{% else %}
{% for cat_name, options in all_attributes.items() %}
-
-
{{ cat_name }}
+
+ {{ cat_name }}
{{ render_partial('partials/custom_select.html',
name='attribute_ids',
options=options,
@@ -36,52 +47,53 @@
{% endif %}
-
- {% if is_edit|default(false, true) == false %}
-
-
-
-
- Edit
-
-
-
-
-
-
- Delete
-
- {% else %}
-
-
-
-
-
- Save
-
-
-
-
-
-
- Cancel
-
- {% endif %}
+
+
+ {% if is_edit|default(false, true) == false %}
+
+
+
+
+ Edit
+
+
+
+
+
+ Delete
+
+ {% else %}
+
+
+
+
+ Save
+
+
+
+
+
+ Cancel
+
+ {% endif %}
+
\ No newline at end of file
diff --git a/templates/partials/person.html b/templates/partials/person.html
index 030f12b..b01c225 100644
--- a/templates/partials/person.html
+++ b/templates/partials/person.html
@@ -8,52 +8,52 @@
type="text" name="name" value="{{ name }}">
{% endif %}
-
- {% if is_edit|default(false, true) == false %}
-
-
-
-
- Edit
-
-
-
-
-
-
- Delete
-
- {% else %}
-
-
-
-
-
- Cancel
-
-
-
-
-
-
- Cancel
-
- {% endif %}
+
+
+ {% if is_edit|default(false, true) == false %}
+
+
+
+
+ Edit
+
+
+
+
+
+ Delete
+
+ {% else %}
+
+
+
+
+ Save
+
+
+
+
+
+ Cancel
+
+ {% endif %}
+
\ No newline at end of file
diff --git a/templates/settings.html b/templates/settings.html
index a633c4f..cd5ed38 100644
--- a/templates/settings.html
+++ b/templates/settings.html
@@ -169,19 +169,19 @@
- Name
+ class="p-4 text-left text-xs font-semibold text-gray-500 uppercase tracking-wider">
+ Exercise Name
+ class="p-4 text-left text-xs font-semibold text-gray-500 uppercase tracking-wider hidden sm:table-cell">
Attributes
+ class="p-4 text-right text-xs font-semibold text-gray-500 uppercase tracking-wider">
-
{% for exercise in exercises %}
{{ render_partial('partials/exercise.html', exercise_id=exercise.exercise_id,
@@ -210,29 +210,33 @@
-