diff --git a/LICENSES b/LICENSES index e5e23198f..e9e394515 100644 --- a/LICENSES +++ b/LICENSES @@ -43,7 +43,8 @@ otherwise. - static/themes/default/img/network-internet.svg :: [[http://tango.freedesktop.org/][Public Domain]] - static/themes/default/img/network-wireless.svg :: [[http://tango.freedesktop.org/][Public Domain]] - static/themes/default/icons/deluge.png :: [[https://upload.wikimedia.org/wikipedia/commons/thumb/8/85//Deluge-Logo.svg/2000px-Deluge-Logo.svg.png][GPL]] -- static/themes/default/icons/ikiwiki.png ::[[https://ikiwiki.info/][GPL-2+]] +- static/themes/default/icons/infinoted.png :: [[https://github.com/gobby/gobby/blob/master/COPYING][ISC]] +- static/themes/default/icons/ikiwiki.png :: [[https://ikiwiki.info/][GPL-2+]] - static/themes/default/icons/jsxc.png :: - - static/themes/default/icons/minetest.png :: [[http://www.minetest.net/media/icon.svg][LGPL 2.1]] - static/themes/default/icons/mumble.png :: [[https://commons.wikimedia.org/wiki/File:Icons_mumble.svg][BSD-3-clause]] diff --git a/plinth/modules/infinoted/__init__.py b/plinth/modules/infinoted/__init__.py index f46de06b2..3f0e7f3b6 100644 --- a/plinth/modules/infinoted/__init__.py +++ b/plinth/modules/infinoted/__init__.py @@ -19,6 +19,7 @@ Plinth module for infinoted. """ +from django.urls import reverse_lazy from django.utils.translation import ugettext_lazy as _ from plinth import actions @@ -81,8 +82,10 @@ def setup(helper, old_version=None): def add_shortcut(): - frontpage.add_shortcut('infinoted', title, None, 'glyphicon-pencil', - description) + frontpage.add_shortcut('infinoted', title, url=None, + details=description, + configure_url=reverse_lazy('infinoted:index'), + login_required=False) def enable(): diff --git a/static/themes/default/icons/infinoted.png b/static/themes/default/icons/infinoted.png new file mode 100644 index 000000000..11c2086d6 Binary files /dev/null and b/static/themes/default/icons/infinoted.png differ