mirror of
https://github.com/evennia/evennia.git
synced 2026-04-02 14:07:16 +02:00
82 lines
3.1 KiB
HTML
82 lines
3.1 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block sidebar %}
|
|
{% endblock %}
|
|
|
|
{% block header_ext %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="rowOfBoxes">
|
|
<div class="twoThirds noBorderOnLeft">
|
|
<h1>Welcome!</h1>
|
|
<p>Welcome to your new installation of Evennia, your friendly
|
|
neighborhood next-generation MUD server. You are looking at Evennia's web
|
|
presence, which can be expanded to a full-fledged site as
|
|
needed. Through the <a href="/admin">admin interface</a> you can view and edit the
|
|
database without logging into the game. Also take your time to
|
|
peruse our extensive online <a href="http://code.google.com/p/evennia/wiki/Index">documentation</a>.
|
|
<p>
|
|
Should you have any questions, concerns, bug reports, or
|
|
if you want to help out, don't hesitate to come join the
|
|
<a href="http://evennia.com">Evennia community</a> and get
|
|
your voice heard!
|
|
</p>
|
|
<i>(To edit this file, go to game/web/templates/prosimii/index.html.)</i>
|
|
</div>
|
|
|
|
<div class="oneThird">
|
|
<h1>Latest News</h1>
|
|
{% for entry in news_entries %}
|
|
<a href="/news/show/{{entry.id}}" class="newsHeading">{{entry.topic.name}}: {{entry.title}}</a>
|
|
<p class="newsDate">By {{entry.author.username}} on {{entry.date_posted|time}}</p>
|
|
<p class="newsSummary">{{entry.body|truncatewords:20}}</p>
|
|
{% endfor %}
|
|
|
|
<div class="more"><a href="/news/archive">More News »</a></div>
|
|
|
|
<p class="filler"><!-- Filler para to extend left vertical line --></p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="rowOfBoxes dividingBorderAbove">
|
|
|
|
<div class="quarter noBorderOnLeft">
|
|
<h1>Players</h1>
|
|
<p>
|
|
There are currently <strong>{{num_players_connected}}</strong> connected,
|
|
and a total of <strong>{{num_players_registered}}</strong> registered. Of these, <strong>{{num_players_registered_recent}}</strong> were created this week, and <strong>{{num_players_connected_recent}}</strong> have connected within the last seven days.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="quarter">
|
|
<h1>Recently Connected</h1>
|
|
<ul>
|
|
{% for player in players_connected_recent %}
|
|
<li>{{player.user.username}} -- <em>{{player.user.last_login|timesince}} ago</em></li>
|
|
{% endfor %}
|
|
</ul>
|
|
<p class="filler"><!-- Filler para to extend left vertical line --></p>
|
|
</div>
|
|
|
|
<div class="quarter">
|
|
<h1>Database Stats</h1>
|
|
<ul>
|
|
<li>{{num_players_registered}} players</li>
|
|
<li>{{num_rooms}} rooms ({{num_exits}} exits) </li>
|
|
<li>{{num_objects}} objects total</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="quarter">
|
|
<h1>Evennia</h1>
|
|
<p><a href="http://evennia.com">Evennia</a> is MUD server built in
|
|
<a href="http://python.org">Python</a>, on top of the
|
|
<a href="http://twistedmatrix.com">Twisted</a> and
|
|
<a href="http://djangoproject.com">Django</a> frameworks. This
|
|
combination of technologies allows for the quick and easy creation
|
|
of the game of your dreams - as simple or as complex as you like.</p>
|
|
</div>
|
|
|
|
</div>
|
|
{% endblock %}
|