This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/_sakura/templates/yuuno/elements/indexPanel.tpl

38 lines
2.4 KiB
Smarty
Raw Normal View History

2015-08-19 19:44:01 +00:00
{% if session.checkLogin %}
2015-05-06 13:42:02 +00:00
<div class="head">Hi, {{ user.data.username }}!</div>
<a href="/settings/avatar"><img src="/a/{{ user.data.id }}" class="default-avatar-setting homepage-menu-avatar" /></a>
<ul class="panelQuickLinks">
<li><a href="/settings/friendrequests" title="Pending friend requests"><span class="fa fa-user-plus"></span><span class="count">{{ page.friend_req|length }}</span></a></li>
<li><a href="/messages" title="View private messages"><span class="fa fa-envelope"></span><span class="count">0</span></a></li>
2015-05-06 13:42:02 +00:00
</ul>
<div class="clear"></div>
{% else %}
2015-08-20 23:17:27 +00:00
{% if sakura.lockAuth %}
2015-05-06 13:42:02 +00:00
<div class="head">Whoops!</div>
You caught the site at the wrong moment! Right now registration <i>and</i> logging in is disabled for unspecified reasons. Sorry for the inconvenience but please try again later!
2015-05-25 18:18:56 +00:00
<div class="indexSidePanelLinks">
<a class="fa fa-lock" href="#" title="Authentication is locked"></a>
</div>
2015-05-06 13:42:02 +00:00
{% else %}
<div class="head">Welcome!</div>
Welcome to Flashii! This is a site for a bunch of friends to hang out, nothing special. Anyone is pretty much welcome to register so why not have a go?
2015-05-25 18:18:56 +00:00
<div class="indexSidePanelLinks">
<a class="fa fa-magic" href="/register" title="Register" id="indexSidePanelRegister"></a>
<a class="fa fa-sign-in" href="/login" title="Login" id="indexSidePanelLogin"></a>
2015-05-25 18:18:56 +00:00
</div>
2015-05-06 13:42:02 +00:00
{% endif %}
{% endif %}
<div class="head">Stats</div>
2015-08-28 20:32:31 +00:00
We have <b>{{ stats.userCount }} user{% if stats.userCount != 1 %}s{% endif %}</b>,
<b><a href="/u/{{ stats.newestUser.data.id }}" class="default">{{ stats.newestUser.data.username }}</a></b> is the newest user,
it has been <b>{{ stats.lastRegDate }}</b> since the last user registered and the forum has <b>{{ stats.topicCount }} thread{% if stats.topicCount != 1 %}s{% endif %}</b> and <b>{{ stats.postCount }} post{% if stats.postCount != 1 %}s{% endif %}</b>.
2015-05-06 13:42:02 +00:00
<div class="head">Online Users</div>
{% if stats.onlineUsers %}
All active users in the past 5 minutes:<br />
{% for amount,onlineUser in stats.onlineUsers %}
<a href="/u/{{ onlineUser.id }}" style="font-weight: bold;" class="default">{{ onlineUser.username }}</a>{% if amount != (stats.onlineUsers|length - 1) %}, {% endif %}
2015-05-06 13:42:02 +00:00
{% endfor %}
{% else %}
There were no online users in the past 5 minutes.
2015-05-09 00:56:55 +00:00
{% endif %}