init project
This commit is contained in:
parent
a26fa2c64a
commit
dc0440fcef
291 changed files with 124865 additions and 485 deletions
15
templates/council/questions.html
Normal file
15
templates/council/questions.html
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{% extends "base.html" %}
|
||||
{% block title %}Fragen – FragDenRat{% endblock %}
|
||||
{% block content %}
|
||||
<h2 class="mb-3">Fragen</h2>
|
||||
<ul class="list-group">
|
||||
{% for q in items %}
|
||||
<li class="list-group-item">
|
||||
<strong>{{ q.title }}</strong>
|
||||
<div class="text-muted">an {{ q.member }} • {{ q.created_at|date:'d.m.Y H:i' }}</div>
|
||||
</li>
|
||||
{% empty %}
|
||||
<li class="list-group-item">Keine Einträge.</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue