{% extends "base.html" %} {% block title %}About{% endblock %} {# About — linked from the modern sidebar. MT note: ST's version of this page hardcodes its own company name and links the `enrollment` blueprint, neither of which is portable here. This version is tenant-neutral: the workspace name comes from tenant_branding (the same source the layouts use), and "add people" points at the Users admin page, which is how accounts are actually created in MT. #} {% set workspace_name = tenant_branding.display_name if tenant_branding else 'this workspace' %} {% block content %}
About
Janitorial Quality Control{% if tenant_branding %} — {{ tenant_branding.display_name }}{% endif %}
{{ workspace_name }}

Quality is verified in the field, not assumed. Every contract is backed by scheduled inspections, documented findings and tracked resolution, so what was checked, when, and by whom is always on the record.

JQC is the quality control platform behind that work. Inspectors work from an offline-capable iPad app; managers, contract staff and customers work from this web portal. Both share one record of every inspection, issue and photo.

Your data

{{ workspace_name }} has its own isolated database. Inspections, issues, photos and accounts belong to this workspace alone and are never shared with, or visible to, any other organisation using JQC.

{% if current_user.role == 'admin' %}
Add More People
Create accounts for colleagues and set what each person can do. Customer Directors and Customer Inspectors are invited by email from Customer Management and choose their own username and password.
Open →
{# The enrollment intake form is served by THIS app and is public (no login), so it is linked with url_for() rather than an absolute URL: the link then stays on whatever host the user is already on — which in MT is the tenant's own subdomain or custom domain — and cannot rot if that domain changes. Submissions are read at Admin -> Enrollment Forms. #}
Enrollment Form
Collect who needs access and what each person should be able to do. No login is required to fill it in, so the link can be forwarded to a customer; submissions arrive under Admin → Enrollment Forms.
Open →
Enrollment Submissions
Every enrollment form that has been submitted, with its office notes, status and CSV export.
Open →
Workspace Settings
Set the workspace name, logo and colours used across the portal and in outbound email.
Open →
{% endif %}
Contact & Support

Questions about an inspection, an issue on a site, or access to the portal — start in the Support Center and it will be routed to the right person.

Go to Support
{% endblock %}