{% extends "multitenancy/admin/base.html" %}
{% block page_title %}Manage Subscriptions{% endblock page_title %}
{%block breadcrumbs%}
Subscriptions
{% endblock%}
{% block main_content %}
ID |
Slug |
Name |
Type |
Date Created |
Date Modified |
Action |
{%if filter.qs %}
{% for tenant in filter.qs%}
{{tenant.id}} |
{{tenant.slug}} |
{{tenant.name}} |
{{tenant.type}} |
{{tenant.created}} |
{{tenant.modified}} |
{% if tenant.schema_name != "public" %}
Edit
Delete
|
{% endif %}
{% endfor %}
{%else%}
There are no records to display |
{%endif%}
{% endblock main_content %}
{%block custom_js%}
{%endblock%}