{% set current_theme = current_theme() %} {{ current_theme.headertags() }} Page Info - Development Information {{ current_theme.local_style() }} {{ current_theme.navbar() }}
{{ current_theme.notify() }}

Development Information - CI Environment Only

Application

Version {{ version }}
Code Name {{ code_name }}
Database Engine {{ app_data.DBENGINE or "Unknown" }}
Cache Type {{ app_data.CACHE }}

System

Operating System {{ config_data.sys._system }}
System Version {{ config_data.sys._system_version }}
Architecture {{ config_data.sys._arch[0] }} ({{ config_data.sys._arch[1] }})
Python Version {{ config_data.sys._python_version }}
Python Implementation {{ config_data.sys._python_implementation }}

Configuration

Application Directory {{ config_data._app_dir }}
Base Files Directory {{ config_data._base_files_dir }}
Private Files Directory {{ config_data._private_files_dir }}
Public Files Directory {{ config_data._public_files_dir }}
Templates Directory {{ config_data._templates_dir }}
Time Zone {{ config_data._time_zone }}
Language {{ config_data._language }}

LMS Statistics

Courses {{ lms_data.courses_count }}
Students {{ lms_data.students_count }}
Teachers {{ lms_data.teachers_count }}
Moderators {{ lms_data.moderators_count }}
Enrollments {{ lms_data.enrollments_count }}
Certificates {{ lms_data.certificates_count }}
Programs {{ lms_data.programs_count }}
Evaluations {{ lms_data.evaluations_count }}
Blog Posts {{ lms_data.blog_posts_count }}
Master Classes {{ lms_data.master_classes_count }}

Environment Variables (filtered)

{% if env_vars %}
{% for key, value in env_vars.items() | sort %} {% endfor %}
{{ key }} {{ value }}
{% else %}

No environment variables to display.

{% endif %}

Routes ({{ routes | length }} total)

{% for route in routes %} {% endfor %}
Endpoint Route Methods
{{ route.endpoint }} {{ route.rule }} {% for method in route.methods %} {{ method }} {% endfor %}
{{ current_theme.jslibs() }}