diff --git a/tools/www-tpl/default-es/quickmenu/friends_all.tpl b/tools/www-tpl/default-es/quickmenu/friends_all.tpl
new file mode 100644
index 0000000..100afa4
--- /dev/null
+++ b/tools/www-tpl/default-es/quickmenu/friends_all.tpl
@@ -0,0 +1,40 @@
+{% if (onlineFriends|length == 0) and (offlineFriends|length == 0) %}
+
+
+
+{% else %}
+
+
+{% set num = 0 %}
+{% for friend in onlineFriends %}
+ {% if num % 2 == 0 %}
+ -
+ {% else %}
+
-
+ {% endif %}
+ {{ friend.getUsername() }}
+
+{% set num = num + 1 %}
+{% endfor %}
+
+
+
+
+
+{% for friend in offlineFriends %}
+ {% if num % 2 == 0 %}
+ -
+ {% else %}
+
-
+ {% endif %}
+ {{ friend.getUsername() }}
+
+{% set num = num + 1 %}
+{% endfor %}
+
+
+
+
+{% endif %}
\ No newline at end of file
diff --git a/tools/www-tpl/default-es/quickmenu/groups.tpl b/tools/www-tpl/default-es/quickmenu/groups.tpl
new file mode 100644
index 0000000..7d1a9c0
--- /dev/null
+++ b/tools/www-tpl/default-es/quickmenu/groups.tpl
@@ -0,0 +1,41 @@
+