-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
270 additions
and
376 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{% extends "html/admindefaults.twig" %} | ||
|
||
{% block body %} | ||
{% include 'html/breadcrumb.twig' %} | ||
<div> | ||
<div> | ||
{% autoescape false %} | ||
{{ GRAPH }} | ||
{% endautoescape %} | ||
</div> | ||
</div> | ||
{% endblock %} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{% extends "html/admindefaults.twig" %} | ||
|
||
{% block body %} | ||
{% include 'html/breadcrumb.twig' %} | ||
<form action="/admin/index.php" method="post" name="massmailform" id="massmailform"> | ||
<input type="hidden" name="SHOW_MASS_MAIL" value="1" /> | ||
<input type="hidden" name="sstr" value="{{ SESSIONSTRING }}" /> | ||
<div style="float: left; width: 75%;"> | ||
<table class="tcal"> | ||
<tr> | ||
<th>Empfangsmedium</th> | ||
</tr> | ||
<tr> | ||
<td> | ||
<label> | ||
<input type="radio" name="medium" value="1" /> via E-Mail | ||
</label> | ||
<label> | ||
<input type="radio" name="medium" value="2" /> via PM | ||
</label> | ||
</td> | ||
</tr> | ||
<tr> | ||
<th>Betreff</th> | ||
</tr> | ||
<tr> | ||
<td><input type="text" style="width: 100%" name="subject" value="Wichtige Information" /></td> | ||
</tr> | ||
<tr> | ||
<th>Text</th> | ||
</tr> | ||
<tr> | ||
<td><textarea name="text" style="width: 100%; height: 300px;"></textarea></td> | ||
</tr> | ||
<tr> | ||
<td> | ||
<input type="submit" name="B_MASS_MAIL" value="Absenden" /> | ||
</td> | ||
</tr> | ||
</table> | ||
</div> | ||
</form> | ||
{% endblock %} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{% from 'html/macros.twig' import userAvatar, userInfo, pmWindow, userProfile %} | ||
|
||
{% extends "html/admindefaults.twig" %} | ||
|
||
{% block body %} | ||
{% include 'html/breadcrumb.twig' %} | ||
<div class="userList"> | ||
{% for listEntry in LIST %} | ||
{% set user = listEntry.getUser %} | ||
{% set userId = user.getId %} | ||
<div class="userListItem"> | ||
<div> | ||
{{ userAvatar(user) }} | ||
</div> | ||
<div> | ||
<div class="userListItemName"> | ||
{{ userInfo(user) }} | ||
</div> | ||
<div class="userListItemAllianceName"> | ||
{% set alliance = user.getAlliance %} | ||
{% if alliance %} | ||
<a href="/alliance.php?id={{ alliance.getId }}">{{ alliance.getName|bbcode }}</a> | ||
{% else %} | ||
<span>-</span> | ||
{% endif %} | ||
</div> | ||
<div class="userListItemButtons"> | ||
<img src="/assets/rassen/{{ user.getFactionId }}s.png" /> | ||
{{ userProfile(userId) }} | ||
{{ pmWindow(USER, userId) }} | ||
</div> | ||
<div class="userBoxDetailAddendum"> | ||
<div> | ||
<img title="Zuletzt online" src="/assets/buttons/time.png" /> | ||
{{ user.getLastAction|stuDateTime }} | ||
</div> | ||
<div>STATUS: | ||
<span style="color: {{ listEntry.getUserStateColor }};">{{ listEntry.getUserStateDescription }}</span> | ||
{% if user.isLocked %} | ||
<a href="javascript:void(0)" onclick="showUserLock({{ userId }});" | ||
onmouseover="cp('lock{{ userId }}','buttons/block1', 'png');" | ||
onmouseout="cp('lock{{ userId }}','buttons/block2', 'png');"><img src="/assets/buttons/block2.png" | ||
name="lock{{ userId }}" title="Spielersperre editieren" /></a> | ||
<a href="/admin/?B_UNLOCK_USER=1&uid={{ userId }}&sstr={{ SESSIONSTRING }}" | ||
onmouseover="cp('activate{{ userId }}','buttons/update1', 'png');" | ||
onmouseout="cp('activate{{ userId }}','buttons/update0', 'png');"><img src="/assets/buttons/update0.png" | ||
name="activate{{ userId }}" title="Spieler entsperren" /></a> | ||
{% else %} | ||
<a href="javascript:void(0)" onclick="showUserLock({{ userId }});" | ||
onmouseover="cp('lock{{ userId }}','buttons/block1', 'png');" | ||
onmouseout="cp('lock{{ userId }}','buttons/block2', 'png');"><img src="/assets/buttons/block2.png" | ||
name="lock{{ userId }}" title="Spielersperre setzen" /></a> | ||
{% endif %} | ||
<a href="/admin/?B_BLOCK_USER=1&uid={{ userId }}&sstr={{ SESSIONSTRING }}"><img | ||
src="/assets/buttons/selfdes2.png" name="block{{ userId }}" title="Spieler blockieren" /></a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
{% endblock %} |
Oops, something went wrong.