mirror of
https://github.com/evennia/evennia.git
synced 2026-03-22 07:46:30 +01:00
183 lines
6.1 KiB
HTML
183 lines
6.1 KiB
HTML
{% extends "admin/base_site.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% load adminmedia %}{% admin_media_prefix %}css/dashboard.css" />{% endblock %}
|
|
|
|
{% block coltype %}colMS{% endblock %}
|
|
|
|
{% block bodyclass %}dashboard{% endblock %}
|
|
|
|
{% block breadcrumbs %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="content-main">
|
|
|
|
{% if app_list %}
|
|
|
|
{% for app in app_list %}
|
|
|
|
{% if app.name in evennia_userapps %}
|
|
|
|
{% if app.name == 'Auth' %}
|
|
<h2>Admin</h2>
|
|
<p><i>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 <b>Player</b></i>.</p>
|
|
{% endif %}
|
|
|
|
<div class="module">
|
|
<table summary="{% blocktrans with app.name as name %}Models available in the {{ name }} application.{% endblocktrans %}">
|
|
<caption><a href="{{ app.app_url }}" class="section">{% blocktrans with app.name as name %}{{ name }}{% endblocktrans %}</a></caption>
|
|
{% for model in app.models %}
|
|
<tr>
|
|
{% if model.perms.change %}
|
|
<th scope="row"><a href="{{ model.admin_url }}">{{ model.name }}</a></th>
|
|
{% else %}
|
|
<th scope="row">{{ model.name }}</th>
|
|
{% endif %}
|
|
|
|
{% if model.perms.add %}
|
|
<td><a href="{{ model.admin_url }}add/" class="addlink">{% trans 'Add' %}</a></td>
|
|
{% else %}
|
|
<td> </td>
|
|
{% endif %}
|
|
|
|
{% if model.perms.change %}
|
|
<td><a href="{{ model.admin_url }}" class="changelink">{% trans 'Change' %}</a></td>
|
|
{% else %}
|
|
<td> </td>
|
|
{% endif %}
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
<h2>Game entities</h2>
|
|
|
|
{% for app in app_list %}
|
|
|
|
{% if app.name in evennia_entityapps %}
|
|
|
|
{% if app.name == 'Comms' %}
|
|
<p><i>This defines entities that has an in-game precense or
|
|
effect of some kind.</i></p>
|
|
{% endif %}
|
|
|
|
<div class="module">
|
|
<table summary="{% blocktrans with app.name as name %}Models available in the {{ name }} application.{% endblocktrans %}">
|
|
<caption><a href="{{ app.app_url }}" class="section">{% blocktrans with app.name as name %}{{ name }}{% endblocktrans %}</a></caption>
|
|
{% for model in app.models %}
|
|
<tr>
|
|
{% if model.perms.change %}
|
|
<th scope="row"><a href="{{ model.admin_url }}">{{ model.name }}</a></th>
|
|
{% else %}
|
|
<th scope="row">{{ model.name }}</th>
|
|
{% endif %}
|
|
|
|
{% if model.perms.add %}
|
|
<td><a href="{{ model.admin_url }}add/" class="addlink">{% trans 'Add' %}</a></td>
|
|
{% else %}
|
|
<td> </td>
|
|
{% endif %}
|
|
|
|
{% if model.perms.change %}
|
|
<td><a href="{{ model.admin_url }}" class="changelink">{% trans 'Change' %}</a></td>
|
|
{% else %}
|
|
<td> </td>
|
|
{% endif %}
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
|
|
<h2>Website</h2>
|
|
|
|
|
|
{% for app in app_list %}
|
|
|
|
{% if app.name in evennia_websiteapps %}
|
|
|
|
{% if app.name == 'Flatpages' %}
|
|
<p><i>Miscellaneous objects related to the running and
|
|
managing of the Web presence.</i></p>
|
|
{% endif %}
|
|
|
|
<div class="module">
|
|
<table summary="{% blocktrans with app.name as name %}Models available in the {{ name }} application.{% endblocktrans %}">
|
|
<caption><a href="{{ app.app_url }}" class="section">{% blocktrans with app.name as name %}{{ name }}{% endblocktrans %}</a></caption>
|
|
{% for model in app.models %}
|
|
<tr>
|
|
{% if model.perms.change %}
|
|
<th scope="row"><a href="{{ model.admin_url }}">{{ model.name }}</a></th>
|
|
{% else %}
|
|
<th scope="row">{{ model.name }}</th>
|
|
{% endif %}
|
|
|
|
{% if model.perms.add %}
|
|
<td><a href="{{ model.admin_url }}add/" class="addlink">{% trans 'Add' %}</a></td>
|
|
{% else %}
|
|
<td> </td>
|
|
{% endif %}
|
|
|
|
{% if model.perms.change %}
|
|
<td><a href="{{ model.admin_url }}" class="changelink">{% trans 'Change' %}</a></td>
|
|
{% else %}
|
|
<td> </td>
|
|
{% endif %}
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
|
|
{% else %}
|
|
<p>{% trans "You don't have permission to edit anything." %}</p>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
<div id="content-related">
|
|
<div class="module" id="recent-actions-module">
|
|
<h2>{% trans 'Recent Actions' %}</h2>
|
|
<h3>{% trans 'My Actions' %}</h3>
|
|
{% load log %}
|
|
{% get_admin_log 10 as admin_log for_user user %}
|
|
{% if not admin_log %}
|
|
<p>{% trans 'None yet.' %}</p>
|
|
{% else %}
|
|
<ul class="actionlist">
|
|
{% for entry in admin_log %}
|
|
<li class="{% if entry.is_addition %}addlink{% endif %}{% if entry.is_change %}changelink{% endif %}{% if entry.is_deletion %}deletelink{% endif %}">
|
|
{% if entry.is_deletion %}
|
|
{{ entry.object_repr }}
|
|
{% else %}
|
|
<a href="{{ entry.get_admin_url }}">{{ entry.object_repr }}</a>
|
|
{% endif %}
|
|
<br/>
|
|
{% if entry.content_type %}
|
|
<span class="mini quiet">{% filter capfirst %}{% trans entry.content_type.name %}{% endfilter %}</span>
|
|
{% else %}
|
|
<span class="mini quiet">{% trans 'Unknown content' %}</span>
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|