add option to list

This commit is contained in:
2024-01-22 22:13:45 +00:00
parent 706b711d22
commit ced2a1dfab

View File

@@ -19,6 +19,7 @@
<th class="text-left">Bezeichnung</th> <th class="text-left">Bezeichnung</th>
<th class="text-left">Abstimmungstext</th> <th class="text-left">Abstimmungstext</th>
<th class="text-left">Abstimmungsverhalten</th> <th class="text-left">Abstimmungsverhalten</th>
<th class="text-left">Beschluss</th>
<th></th> <th></th>
</tr> </tr>
</thead> </thead>
@@ -29,6 +30,7 @@
<td>{{ result.name }}</td> <td>{{ result.name }}</td>
<td class="text-left">{{ result.voting_text }}</td> <td class="text-left">{{ result.voting_text }}</td>
<td class="text-left">{{ result.voting }}</td> <td class="text-left">{{ result.voting }}</td>
<td class="text-left">{{ result.get_option_display }}</td>
<td> <td>
<a href="{% url 'finance:resolution_update' result.id %}" class="btn btn-small btn-tertiary"><i class="fa-solid fa-pen-to-square" aria-label="Bearbeiten" title="Bearbeiten"></i></a> <a href="{% url 'finance:resolution_update' result.id %}" class="btn btn-small btn-tertiary"><i class="fa-solid fa-pen-to-square" aria-label="Bearbeiten" title="Bearbeiten"></i></a>
</td> </td>