{% 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() }}