diff --git a/biscuit/core/templates/core/edit_group.html b/biscuit/core/templates/core/edit_group.html
index 0eb63393e8c7326012cb6fe6209f4c7e33218126..33739a47f4fcfd94002c862de66a1a553cc1576b 100644
--- a/biscuit/core/templates/core/edit_group.html
+++ b/biscuit/core/templates/core/edit_group.html
@@ -23,7 +23,7 @@
     {% csrf_token %}
     {% bootstrap_form edit_group_form %}
     <button type="submit" class="btn btn-dark">
-      {% blocktrans %}Edit{% endblocktrans %}
+      <span class="mdi mdi-pencil"></span>
     </button>
   </form>
 
diff --git a/biscuit/core/templates/core/edit_person.html b/biscuit/core/templates/core/edit_person.html
index c1b4f8e22115bca0f821c7dcc04b67c8e88b3bf6..e698f01c6cf4c3154ae3c9cd4002d9be28be7b5f 100644
--- a/biscuit/core/templates/core/edit_person.html
+++ b/biscuit/core/templates/core/edit_person.html
@@ -25,7 +25,7 @@
     {% csrf_token %}
     {% bootstrap_form edit_person_form %}
     <button type="submit" class="btn btn-dark">
-      {% blocktrans %}Edit{% endblocktrans %}
+      <span class="mdi mdi-pencil"></span>
     </button>
   </form>
 
diff --git a/biscuit/core/templates/core/edit_school.html b/biscuit/core/templates/core/edit_school.html
index f26ffce4c61c9ccaa9df5205098a74d5ea78e227..8e1b03db0aeef2c080e37387752fc931d84c5b87 100644
--- a/biscuit/core/templates/core/edit_school.html
+++ b/biscuit/core/templates/core/edit_school.html
@@ -19,7 +19,7 @@
     {% csrf_token %}
     {% bootstrap_form edit_school_form %}
     <button type="submit" class="btn btn-dark">
-      {% blocktrans %}Edit{% endblocktrans %}
+      <span class="mdi mdi-pencil"></span>
     </button>
   </form>
 
diff --git a/biscuit/core/templates/core/edit_schoolterm.html b/biscuit/core/templates/core/edit_schoolterm.html
index 1ba2931b24a80b13eff22b6bd9900da00f312132..0a5f083b22c227d95348e89c84d8f589fb4db988 100644
--- a/biscuit/core/templates/core/edit_schoolterm.html
+++ b/biscuit/core/templates/core/edit_schoolterm.html
@@ -19,7 +19,7 @@
     {% csrf_token %}
     {% bootstrap_form edit_term_form %}
     <button type="submit" class="btn btn-dark">
-      {% blocktrans %}Edit{% endblocktrans %}
+      <span class="mdi mdi-pencil"></span>
     </button>
   </form>
 
diff --git a/biscuit/core/templates/core/group_full.html b/biscuit/core/templates/core/group_full.html
index 0b925b1451f14d7b3f002b19d204cb56a80226a3..abc3d342ab832ea138cbdb30ecd488cbcf9bb2f9 100644
--- a/biscuit/core/templates/core/group_full.html
+++ b/biscuit/core/templates/core/group_full.html
@@ -13,7 +13,7 @@
       <h2>{{ group.name }} <small>{{ group.short_name }}</small></h2>
       <p>
         <a href="{% url 'edit_group_by_id' group.id %}">
-          {% blocktrans %}Edit group{% endblocktrans %}
+          <span class="mdi mdi-account-pencil"></span>
         </a>
       </p>
       <h3>{% blocktrans %}Details{% endblocktrans %}</h3>
diff --git a/biscuit/core/templates/core/person_full.html b/biscuit/core/templates/core/person_full.html
index 6c05430346303d2bdeabb03c3f5ae08879dec323..b412765539e921c1ed18d7a7d55c0acad1812f8f 100644
--- a/biscuit/core/templates/core/person_full.html
+++ b/biscuit/core/templates/core/person_full.html
@@ -13,7 +13,7 @@
       <h2>{{ person.first_name }} {{ person.last_name }}</h2>
       <p>
         <a href="{% url 'edit_person_by_id' person.id %}">
-          {% blocktrans %}Edit person{% endblocktrans %}
+          <span class="mdi mdi-pencil"></span>
         </a>
       </p>
       <h3>{% blocktrans %}Contact details{% endblocktrans %}</h3>