27:9fa79edc2e45
Anton Shestakov <av6@dwimlabs.net>, 2016-06-15
viewer: use new get_duration() method to format time taken by a check

next change 28:46b429c6500d
previous change 26:8c1ce7d12350

templates/project.html

Other formats: Feeds:
Inserted Replaced Deleted
26:8c1ce7d12350 27:9fa79edc2e45
<div>{{ change.message }}</div> <div>{{ change.message }}</div>
<div>{{ change.author }}, <time>{{ change.date }}</time></div> <div>{{ change.author }}, <time>{{ change.date }}</time></div>
</td> </td>
<td>{% module Time(check.started) %}</td> <td>{% module Time(check.started) %}</td>
<td>{% module Time(check.finished) %}</td> <td>{% module Time(check.finished) %}</td>
<td>{{ check.finished - check.started }}</td> <td>{{ check.get_duration() }}</td>
</tr> </tr>
{% end %} {% end %}
</tbody> </tbody>
</table> </table>
</div> </div>