FossilRepo
{% extends "base.html" %} {% block title %}Settings — Fossilrepo{% endblock %}
{% block content %}
Organization Settings
{% if perms.organization.change_organization %} Edit Settings {% endif %}- Name
- {{ org.name }}
- Slug
- {{ org.slug }}
- Website
- {{ org.website|default:"—" }}
- GUID
- {{ org.guid }}
- Description
- {{ org.description|default:"No description." }}
- Created
- {{ org.created_at|date:"N j, Y g:i a" }}
- Updated
- {{ org.updated_at|date:"N j, Y g:i a" }}
Members
{% if perms.organization.view_organizationmember %}
Manage Members
{% endif %}
Teams
{% if perms.organization.view_team %}
Manage Teams
{% endif %}
Roles
{% if perms.organization.view_organization %}
Manage Roles
{% endif %}
{% endblock %}