| Index: dashboard/dashboard/pinpoint/models/job.py
 | 
| diff --git a/dashboard/dashboard/pinpoint/models/job.py b/dashboard/dashboard/pinpoint/models/job.py
 | 
| index 69ca196c442fff73a21cddb34a52937f91fcfd73..d7055a2d5e80b543587b3f69da9d81b15c871136 100644
 | 
| --- a/dashboard/dashboard/pinpoint/models/job.py
 | 
| +++ b/dashboard/dashboard/pinpoint/models/job.py
 | 
| @@ -270,11 +270,16 @@ class _JobState(object):
 | 
|  
 | 
|        result_values.append(change_result_values)
 | 
|  
 | 
| +    attempts = []
 | 
| +    for c in self._changes:
 | 
| +      attempts.append([a.AsDict() for a in self._attempts[c]])
 | 
| +
 | 
|      return {
 | 
|          'quests': map(str, self._quests),
 | 
|          'changes': [change.AsDict() for change in self._changes],
 | 
|          'comparisons': comparisons,
 | 
|          'result_values': result_values,
 | 
| +        'attempts': attempts,
 | 
|      }
 | 
|  
 | 
|    def _Compare(self, change_a, change_b):
 | 
| 
 |