{% extends "master.html" %} {% block content %}

Web manager

The web manager gives access to nearly every object and function in groundwork via a web interface.

Groundwork Base System

Plugins ({{ app.plugins.get()|length }}/{{ app.plugins.classes.get()|length }})

View and manage plugin instances and plugin classes.

Plugins

Signals ({{ app.signals.get()|length }})

See details of all registered signals for this application.

Signals

Receivers ({{ app.signals.get_receiver()|length }})

See all registered receivers and their details on one page.

Receivers

{% if app.commands %}

Commands ({{ app.commands.get()|length }})

Get a list of all available commands for the command line interface.

Commands

{% else %}

Commands (0)

Get a list of all available commands for the command line interface.

Commands

{% endif %}
{% if app.shared_objects %}

Shared objects ({{ app.shared_objects.get()|length }})

Shows you a list of all available shared objects on one page.

Shared objects

{% else %}

Shared objects (0)

Shows you a list of all available shared objects on one page.

Shared objects

{% endif %}
{% if app.documents %}

Documents ({{ app.documents.get()|length }})

Shows you a list of all registered documents on a single page.

Documents

{% else %}

Documents (0)

Shows you a list of all registered documents on a single page.

Documents

{% endif %}
{% if app.recipies %}

Recipes ({{ app.recipes.get()|length }})

View a list of all available recipes on a single page.

Recipes

{% else %}

Recipes (0)

View a list of all available recipes on a single page.

Recipes

{% endif %}

Groundwork Web System

Routes ({{ app.web.routes.get()|length }})

See a list off all available and active routes in the application

Routes

Servers ({{ app.web.servers.get()|length }})

Shows you a list of all registered web servers and its configuration.

Servers

Context ({{ app.web.contexts.get()|length }})

View all contexts and their location on the current system.

Contexts

Menu ({{ app.web.menus.get()|length }})

Shows you all registered menus and their structure.

Menu entries

{% endblock %}