{% if len(deleted_workspaces) == 0 %}
Message |
{% if q %}
No deleted workspaces found
{% else %}
There is no deleted workspaces
{% end %}
{% if current_page > 0 %}
, go to the first page
{% end %}
{% if q %}
, remove search
{% end %}
|
{% else %}
Email |
Created |
Last updated |
Database |
Hard delete |
{% for workspace in sorted(deleted_workspaces, key = lambda user: user.updated_at, reverse=True) %}
{{workspace['name']}} {% if workspace.limits %}*{% end %}
|
{{workspace.created_at.date().isoformat()}} |
{{workspace.updated_at.date().isoformat()}} |
- Server
- {{ workspace.database_server }}
- Name
- {{ workspace.database }}
{% if workspace.clusters %}
- Clusters
- {{ ', '.join(workspace.clusters) }}
{% end %}
|
|
{% end %}
{% end %}