|
@@ -2,26 +2,26 @@
|
|
|
{% block content %}
|
|
|
<h1>Add question: {{ ballot.name }}</h1>
|
|
|
<table class="table table-sm">
|
|
|
- <tr>
|
|
|
- <th scope="row">Description</th>
|
|
|
- <td>{{ ballot.description }}</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th scope="row">Start</th>
|
|
|
- <td>{{ ballot.start_at }}</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th scope="row">End</th>
|
|
|
- <td>{{ ballot.end_at }}</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th scope="row">User</th>
|
|
|
- <td>{{ ballot.user.name }}</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th scope="row">Priority</th>
|
|
|
- <td>{{ ballot.priority.name }}</td>
|
|
|
- </tr>
|
|
|
+ <tr>
|
|
|
+ <th scope="row">Description</th>
|
|
|
+ <td>{{ ballot.description }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th scope="row">Start</th>
|
|
|
+ <td>{{ ballot.start_at }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th scope="row">End</th>
|
|
|
+ <td>{{ ballot.end_at }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th scope="row">User</th>
|
|
|
+ <td>{{ ballot.user.name }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th scope="row">Priority</th>
|
|
|
+ <td>{{ ballot.priority.name }}</td>
|
|
|
+ </tr>
|
|
|
</table>
|
|
|
<form method="post">
|
|
|
<div class="form-group">
|