used new card styling on admin info page

This commit is contained in:
Nicholas 2017-07-15 20:43:04 -04:00 committed by Griatch
parent 2d40a525fd
commit 645fcc100b

View file

@ -1,26 +1,48 @@
{% extends "base.html" %}
{% block content %}
<div class="row">
<div class="col">
<h1>Admin</h1>
Welcome to the Evennia Admin Page. Here, you can edit many facets of players, characters, and other parts of the game.
<div class="col">
<div class="card">
<div class="card-block">
<h1 class="card-title">Admin</h1>
<p class="card-text">
Welcome to the Evennia Admin Page. Here, you can edit many facets of players, characters, and other parts of the game.
</p>
<h2><a href="{% url "admin:players_playerdb_changelist" %}">Players</a></h2>
Players are user accounts. Players can have several characters under them. A user's login and password information can be changed here.
<hr />
<h2><a href="{% url "admin:objects_objectdb_changelist" %}">Objects</a></h2>
Objects include everything from characters to rooms to exits.
<p class="card-text">
<h2><a href="{% url "admin:players_playerdb_changelist" %}">Players</a></h2>
Players are user accounts. Players can have several characters under them. A user's login and password information can be changed here.
</p>
<h2><a href="{% url "admin:scripts_scriptdb_changelist" %}">Scripts</a></h2>
Scripts are meta objects used to store game information, handle special functionality or perform timed actions.
<p class="card-text">
<h2><a href="{% url "admin:objects_objectdb_changelist" %}">Objects</a></h2>
Objects include everything from characters to rooms to exits.
</p>
<h2><a href="{% url "admin:comms_channeldb_changelist" %}">Channels</a></h2>
Channels are used for player communications.
<p class="card-text">
<h2><a href="{% url "admin:scripts_scriptdb_changelist" %}">Scripts</a></h2>
Scripts are meta objects used to store game information, handle special functionality or perform timed actions.
</p>
<h2><a href="{% url "admin:help_helpentry_changelist" %}">Help Topics</a></h2>
<p class="card-text">
<h2><a href="{% url "admin:comms_channeldb_changelist" %}">Channels</a></h2>
Channels are used for player communications.
</p>
<p>If you are an advanced user who needs access to the raw Django Admin, it is available <a href="{% url "django_admin" %}">here</a>.
You can make this the default my changing <code>EVENNIA_ADMIN</code> to <code>False</code> in <code>settings.py</code> and reload.</p>
<p class="card-text">
<h2><a href="{% url "admin:help_helpentry_changelist" %}">Help Topics</a></h2>
Help entries are custom entries added to the player help system.
</p>
<hr />
<p class="card-text">
If you are an advanced user who needs access to the raw Django Admin, it is available <a href="{% url "django_admin" %}">here</a>.
You can make this the default my changing <code>EVENNIA_ADMIN</code> to <code>False</code> in <code>settings.py</code> and reload.
</p>
</div>
</div>
</div>
</div>
{% endblock content %}