{% extends "base.html" %} {% block title %}Workspace Settings | TrustForge{% endblock %} {% block meta_description %}Manage your TrustForge workspace, business profile, and team roles.{% endblock %} {% block content %}
Workspace settings

{{ current_membership.business.name }}

Manage the business profile, service territory, review destination, and who has access to this protected trust engine.

Back to dashboard

Business profile

These details anchor onboarding, workspace identity, and public review routing.

Current role {{ current_membership.get_role_display }}
{% csrf_token %}
{{ business_form.name }}
{{ business_form.industry }}
{{ business_form.primary_city }}
{{ business_form.primary_state }}
{{ business_form.google_review_url }}

Role access model

Owner / AdminManage workspace settings, team access, jobs, and proof publishing.
ManagerRun the job-to-proof workflow and edit proof cards, but not workspace administration.
TechnicianLog completed jobs and view pipeline activity inside the assigned business only.

Add team member

Attach a user to this workspace. New users can use the forgot-password flow to activate access if they do not have a password yet.

{% csrf_token %}
{{ invite_form.first_name }}
{{ invite_form.last_name }}
{{ invite_form.email }}
{{ invite_form.role }}

Workspace team

{{ team_members|length }} seats
{% for membership in team_members %}
{{ membership.user.get_full_name|default:membership.user.email }}
{{ membership.user.email }}
{{ membership.get_role_display }}
Joined {{ membership.created_at|date:"M j, Y" }}
{% empty %}

No team members yet

Invite admins, managers, and technicians to turn this workspace into a real multi-user SaaS account.

{% endfor %}
{% endblock %}