diff --git a/modules/installed/apps/owncloud.py b/modules/installed/apps/owncloud.py index e2b95c75f..83a79539c 100644 --- a/modules/installed/apps/owncloud.py +++ b/modules/installed/apps/owncloud.py @@ -19,12 +19,12 @@ class Owncloud(PagePlugin): @cherrypy.expose @require() def index(self, **kwargs): - sidebar_right=""" -Owncloud

gives you universal access to your files through a web interface or WebDAV. It also provides a platform to easily view & sync your contacts, calendars and bookmarks across all your devices and enables basic editing right on the web. Installation has minimal server requirements, doesn't need special permissions and is quick. ownCloud is extendable via a simple but powerful API for applications and plugins. + main=""" +

ownCloud gives you universal access to your files through a web interface or WebDAV. It also provides a platform to easily view & sync your contacts, calendars and bookmarks across all your devices and enables basic editing right on the web. Installation has minimal server requirements, doesn't need special permissions and is quick. ownCloud is extendable via a simple but powerful API for applications and plugins.

""" - sidebar_right = sidebar_right + 'Configure Owncloud' - return self.fill_template(title="Owncloud", main='', sidebar_right=sidebar_right) + sidebar_right = 'Configure Owncloud' + return self.fill_template(title="Owncloud", main=main, sidebar_right=sidebar_right) class configure(FormPlugin, PagePlugin): url = ["/apps/owncloud/configure"]