We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 562bde1 commit 26f9413Copy full SHA for 26f9413
1 file changed
task_manager/templates/tasks/index.html
@@ -41,8 +41,8 @@ <h1 class="my-4">{% trans 'Tasks' %}</h1>
41
<td>{{ task.id }}</td>
42
<td>{{ task.name }}</td>
43
<th>{{ task.status }}</th>
44
- <th>{{ task.author }}</th>
45
- <th>{{ task.executor }}</th>
+ <th>{{ task.author.first_name }} {{ task.author.last_name }}</th>
+ <th>{{ task.executor.first_name }} {{ task.executor.last_name }}</th>
46
<td>{{ task.inserted_timestamp|date:"d.m.Y H:i" }}</td>
47
<td>
48
<a href="{% url 'tasks_update' pk=task.id %}">{% trans 'Edit' %}</a>
0 commit comments