blob: 157b74a17253d7b35f7fe0371246dc162a5fe5b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<div class="avatar-widget">
<? if ($GLOBALS['perm']->have_profile_perm('user', $current_user)) : ?>
<a class="profile-avatar"
accept="image/gif,image/png,image/jpeg" capture="camera"
data-max-size="<?= Avatar::MAX_FILE_SIZE ?>"
data-message-too-large="<?= _('Die hochgeladene Datei ist zu groß. Bitte wählen Sie ein anderes Bild.') ?>"
data-message-unaccepted="<?= _('Die hochgeladene Datei hat falsche Typ. Bitte wählen Sie ein anderes Bild.') ?>"
href="<?= URLHelper::getURL('dispatch.php/avatar/update/user/' . $current_user) ?>" data-dialog>
<?= $avatar->getImageTag(Avatar::NORMAL) ?>
<div id="avatar-overlay" class="avatar-overlay">
<div class="text">
<?= _('Bild hochladen oder löschen.') ?>
<br>
<?= _('Drag & Drop oder Klicken') ?>
</div>
</div>
</a>
<? else : ?>
<?= $avatar->getImageTag(Avatar::NORMAL) ?>
<? endif ?>
</div>
<div class="profile-sidebar-details">
<? if ($kings): ?>
<div><?= $kings ?></div>
<? endif; ?>
<div class="minor">
<?= _('Profilbesuche:') ?>
<?= number_format($views, 0, ',', '.') ?>
</div>
<? if ($score && $score_title): ?>
<div class="minor">
<a href="<?= URLHelper::getLink('dispatch.php/score') ?>" title="<?= _('Zur Rangliste') ?>">
<?= _('Stud.IP-Punkte') ?>: <?= number_format($score, 0, ',', '.') ?>
<br />
<?= _('Rang') ?>: <?= htmlReady($score_title) ?>
</a>
</div>
<? endif; ?>
</div>
|