Warning

This document is for an old release of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.

Source code for galaxy.webapps.galaxy.controllers.library

import logging

from galaxy import web
from galaxy.webapps.base.controller import BaseUIController


log = logging.getLogger(__name__)


[docs]class Library(BaseUIController):
[docs] @web.expose def list(self, trans, **kwd): # define app configuration for generic mako template app = { 'jscript': "library" } return trans.fill_template('galaxy.panels.mako', config={ 'title': 'Data Libraries', 'app': app, 'bundle': 'extended'})