Beispiel #1
0
def lhcb_landing():
    """Basic LHCb landing view."""
    collections = Collection.query.filter(Collection.name.in_(
        ['LHCb'])).one().drilldown_tree()
    return render_template('lhcb/landing_page.html',
                           record_types=get_collections_tree(collections))
def alice_landing():
    """Basic ALICE landing view."""
    collections = Collection.query.filter(
        Collection.name.in_(['ALICE'])).one().drilldown_tree()
    return render_template('alice/landing_page.html',
                           record_types=get_collections_tree(collections))
def lhcb_landing():
    """Basic LHCb landing view."""
    collections = Collection.query.filter(
        Collection.name.in_(['LHCb'])).one().drilldown_tree()
    return render_template('lhcb/landing_page.html',
                           record_types=get_collections_tree(collections))
def alice_landing():
    """Basic ALICE landing view."""
    collections = Collection.query.filter(
        Collection.name.in_(['ALICE'])).one().drilldown_tree()
    return render_template('alice/landing_page.html',
                           record_types=get_collections_tree(collections))
def cms_landing():
    """Basic CMS landing view."""
    collections = Collection.query.filter(Collection.name.in_(["CMS"])).one().drilldown_tree()
    return render_template("cms/landing_page.html", record_types=get_collections_tree(collections))