diff --git a/cms/templates/widgets/sock.html b/cms/templates/widgets/sock.html
index 15b1491e74..42d329d391 100644
--- a/cms/templates/widgets/sock.html
+++ b/cms/templates/widgets/sock.html
@@ -4,6 +4,7 @@ from django.conf import settings
from django.utils.translation import ugettext as _
%>
<%namespace file="sock_links.html" import="get_sock_links" />
+<%namespace file="sock_links_extra.html" import="get_sock_links_extra" />
@@ -17,10 +18,15 @@ from django.utils.translation import ugettext as _
- ${_("{studio_name} Documentation").format(studio_name=settings.STUDIO_NAME)}
+ ${_("{studio_name} Documentation").format(studio_name=settings.STUDIO_NAME)}
+ <%
+ links = get_sock_links()
+ links_extra = get_sock_links_extra()
+ links.extend(links_extra)
+ %>
- % for link in get_sock_links():
+ % for link in links:
% if link['condition']:
-
${link['text']}
diff --git a/cms/templates/widgets/sock_links_extra.html b/cms/templates/widgets/sock_links_extra.html
new file mode 100644
index 0000000000..bfb305c29f
--- /dev/null
+++ b/cms/templates/widgets/sock_links_extra.html
@@ -0,0 +1,12 @@
+<%page expression_filter="h" />
+<%!
+from django.conf import settings
+from django.utils.translation import ugettext as _
+%>
+
+<%def name="get_sock_links_extra()">
+ <%
+ links_extra = []
+ return links_extra
+ %>
+%def>