Skip to content

Commit

Permalink
fixed assignee
Browse files Browse the repository at this point in the history
  • Loading branch information
bsuh committed Sep 24, 2011
1 parent 365c25a commit a40a389
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,18 @@ <h3>Requested by me</h3>
</thead>
<tbody>
{% for task in user_assigned %}
<tr>
<td><a class="task_entry" id="{{task.task_id}}">{{task.task_name}}</a></td>
<td class="pictures" width="100">
<a href="http://www.facebook.com/{{task.assigner_id}}">
<img src="https://graph.facebook.com/{{task.assigner_id}}/picture" class="small-picture">
</a>
</td>
<tr>
<td><a class="task_entry" id="{{task.task_id}}">{{task.task_name}}</a></td>
<td class="pictures" width="100">
{% for assignee in task.assignees %}
<a href="http://www.facebook.com/{{assignee.facebook_id}}">
<img src="https://graph.facebook.com/{{assignee.facebook_id}}/picture" class="small-picture">
</a>
{% endfor %}
</td>
</tr>
{% endfor %}
</tbody>
</tbody>
</table>
<h3>Assigned to me</h3>
<table class="zebra-striped">
Expand Down

0 comments on commit a40a389

Please sign in to comment.