2024-02-07 17:31:12 +13:00
|
|
|
{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %}
|
|
|
|
{% extends 'themes/' + theme() + '/base.html' %}
|
|
|
|
{% else %}
|
|
|
|
{% extends "base.html" %}
|
2024-12-10 12:16:52 +01:00
|
|
|
{% endif %}
|
2024-01-03 20:53:06 +13:00
|
|
|
{% from 'bootstrap/form.html' import render_form %}
|
|
|
|
|
|
|
|
{% block app_content %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12 col-md-8 position-relative main_pane">
|
|
|
|
<nav aria-label="breadcrumb" id="breadcrumb_nav" title="Navigation">
|
|
|
|
<ol class="breadcrumb">
|
|
|
|
<li class="breadcrumb-item"><a href="/">{{ _('Home') }}</a></li>
|
|
|
|
<li class="breadcrumb-item active">{{ _('People') }}</li>
|
|
|
|
</ol>
|
|
|
|
</nav>
|
|
|
|
<h1 class="mt-2">{{ _('People') }}</h1>
|
|
|
|
{% if people %}
|
|
|
|
<table class="table table-striped">
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>About</th>
|
|
|
|
</tr>
|
|
|
|
{% for person in people %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ render_username(person) }}</td>
|
|
|
|
<td>{{ person.about_html | safe if person.about_html }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
{% else %}
|
|
|
|
<p>{{ _('No people to show') }}</p>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
2024-02-05 08:39:08 +13:00
|
|
|
<aside id="side_pane" class="col-12 col-md-4 side_pane" role="complementary">
|
2024-01-03 20:53:06 +13:00
|
|
|
|
2024-03-08 10:34:17 +01:00
|
|
|
<div class="card">
|
2024-01-03 20:53:06 +13:00
|
|
|
<div class="card-header">
|
|
|
|
<h2> </h2>
|
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-01-28 21:38:04 +13:00
|
|
|
</aside>
|
2024-01-03 20:53:06 +13:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|