Skip to content

Commit

Permalink
fixin broke db relationships
Browse files Browse the repository at this point in the history
  • Loading branch information
olli committed Sep 17, 2012
1 parent 6a320d5 commit 5c81c06
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions data/html/browse.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ <h1>Tasks</h1>
</td>
<td>${r.machine}</td>
<td>
% if r.status == 0:
% if r.detected == 1:
NOT DETECTED
% elif r.detected == 2:
DETECTED
% elif r.status == 0:
% if r.lock == 0:
PENDING
% elif r.lock == 1:
PROCESSING
% endif
% elif r.status == 1:
FAILED
% elif r.detected == 1:
NOT DETECTED
% elif r.detected == 2:
DETECTED
% endif
</td>
</tr>
Expand Down

0 comments on commit 5c81c06

Please sign in to comment.