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

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