{% extends "admin/base_site.html" %} {% load i18n %} {% block extrastyle %}{{ block.super }}{% endblock %} {% block coltype %}colMS{% endblock %} {% block bodyclass %}dashboard{% endblock %} {% block breadcrumbs %}{% endblock %} {% block content %}
{% if app_list %} {% for app in app_list %} {% if app.name in evennia_userapps %} {% if app.name == 'Auth' %}

Admin

Note: Users hold django-specific authentication and should not be created stand-alone. Groups define permissions only relevant to admin-site access. To create a new In-game user, create a new Player.

{% endif %}
{% for model in app.models %} {% if model.perms.change %} {% else %} {% endif %} {% if model.perms.add %} {% else %} {% endif %} {% if model.perms.change %} {% else %} {% endif %} {% endfor %}
{% blocktrans with app.name as name %}{{ name }}{% endblocktrans %}
{{ model.name }}{{ model.name }}{% trans 'Add' %} {% trans 'Change' %} 
{% endif %} {% endfor %}

Game entities

{% for app in app_list %} {% if app.name in evennia_entityapps %} {% if app.name == 'Comms' %}

This defines entities that has an in-game precense or effect of some kind.

{% endif %}
{% for model in app.models %} {% if model.perms.change %} {% else %} {% endif %} {% if model.perms.add %} {% else %} {% endif %} {% if model.perms.change %} {% else %} {% endif %} {% endfor %}
{% blocktrans with app.name as name %}{{ name }}{% endblocktrans %}
{{ model.name }}{{ model.name }}{% trans 'Add' %} {% trans 'Change' %} 
{% endif %} {% endfor %}

Website

{% for app in app_list %} {% if app.name in evennia_websiteapps %} {% if app.name == 'Flatpages' %}

Miscellaneous objects related to the running and managing of the Web presence.

{% endif %}
{% for model in app.models %} {% if model.perms.change %} {% else %} {% endif %} {% if model.perms.add %} {% else %} {% endif %} {% if model.perms.change %} {% else %} {% endif %} {% endfor %}
{% blocktrans with app.name as name %}{{ name }}{% endblocktrans %}
{{ model.name }}{{ model.name }}{% trans 'Add' %} {% trans 'Change' %} 
{% endif %} {% endfor %} {% else %}

{% trans "You don't have permission to edit anything." %}

{% endif %}
{% endblock %} {% block sidebar %} {% endblock %}