Skip to content

Commit 26f9413

Browse files
committed
Fix
1 parent 562bde1 commit 26f9413

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

task_manager/templates/tasks/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ <h1 class="my-4">{% trans 'Tasks' %}</h1>
4141
<td>{{ task.id }}</td>
4242
<td>{{ task.name }}</td>
4343
<th>{{ task.status }}</th>
44-
<th>{{ task.author }}</th>
45-
<th>{{ task.executor }}</th>
44+
<th>{{ task.author.first_name }} {{ task.author.last_name }}</th>
45+
<th>{{ task.executor.first_name }} {{ task.executor.last_name }}</th>
4646
<td>{{ task.inserted_timestamp|date:"d.m.Y H:i" }}</td>
4747
<td>
4848
<a href="{% url 'tasks_update' pk=task.id %}">{% trans 'Edit' %}</a>

0 commit comments

Comments
 (0)