{% 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

Players are the out-of-character representation of a game account. A Player can potentially control any number of in-game character Objects (depending on game).

{% endif %}
{% for model in app.models %} {% if model.name == "Users" %} {% if model.perms.change %} {% else %} {% endif %} {% if model.perms.add %} {% else %} {% endif %} {% if model.perms.change %} {% else %} {% endif %} {% endif %} {% endfor %}
{% blocktrans with app.name as name %}{{ name }}{% endblocktrans %}
PlayerPlayer{% 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 %}