Ĉi tiu deponejo arĥiviĝis je 2024-01-28. Vi povas vidi kaj elŝuti dosierojn, sed ne povas puŝi nek raporti problemojn nek tirpeti.
2019-02-23 01:15:14 -06:00
|
|
|
<article class="user_info">
|
|
|
|
<h1 class="title">{{ user_full_name }}</h1>
|
|
|
|
<h3 class="author">{{ user_website }} <{{ user_email }}></h3>
|
2019-03-05 08:33:32 -06:00
|
|
|
<h3>({{ user_name }} - {{ user_class }})</h3>
|
2019-02-23 01:15:14 -06:00
|
|
|
<div class="text">{{ user_bio }}</div>
|
|
|
|
</article>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
{% if (logged_id == user_id) or (user[logged_id]['class'] == "archmage")
|
|
|
|
or (user[logged_id]['class'] == "wizard") %}
|
|
|
|
<a class="button" href="edit/?id={{ user_id }}">Edit profile</a>
|
2019-03-05 08:33:32 -06:00
|
|
|
<a class="button" href="oust/?id={{ user_id }}">Delete user</a>
|
2019-02-23 01:15:14 -06:00
|
|
|
{% endif %}
|
|
|
|
</p>
|
2019-02-20 08:04:55 -06:00
|
|
|
|
|
|
|
{% for post_id in user_posts %}
|
|
|
|
{% set post_id = post_id %}
|
|
|
|
|
2019-02-23 01:15:14 -06:00
|
|
|
{{ include ('meta_post_card_mini.twig.html') }}
|
2019-02-20 08:04:55 -06:00
|
|
|
{% endfor %}
|
|
|
|
</ul>
|