{% extends 'sb_sync/base.html' %} {% block title %}Dashboard - SB Sync Configuration{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block content %}
{{ total_models }}
Models Available
{{ total_organizations }}
Organizations
{{ total_groups }}
User Groups
{{ total_models|add:total_organizations|add:total_groups }}
Total Configurations
Recent Activity
Sync System
Configuration panel ready
Active
Permissions
{{ total_groups }} groups configured
{{ total_groups }}
Models
{{ total_models }} models discovered
{{ total_models }}
Organizations
{% if organizations %}
{% for org in organizations %} {% endfor %}
Name Slug Status
{{ org.name }} {{ org.slug }} {% if org.is_active %} Active {% else %} Inactive {% endif %}
{% else %}

No organizations configured

{% endif %}
Available Models
{% if models %}
{% for model in models|slice:":10" %} {% endfor %} {% if models|length > 10 %} {% endif %}
Model App
{{ model }} {{ model.split.0 }}
... and {{ models|length|add:"-10" }} more models
{% else %}

No models discovered

{% endif %}
{% endblock %}