Skip to content

Commit

Permalink
Remove success/fail background on job list: the badge covers it
Browse files Browse the repository at this point in the history
  • Loading branch information
mfitzp committed Aug 26, 2015
1 parent 4c3be4e commit f9ef833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wooey/templates/wooey/jobs/job_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ <h3 id="wooey-job-list-title">{{ title }}</h3>

</tr>
{% for job in object_list %}
<tr class="{% if job.status == 'completed' %}success{% elif job.status == 'running' %}success{% elif job.status == 'pending' %}default{% elif job.status == 'revoked' %}danger{% elif job.status == 'submitted' %}default{% endif %}">
<tr>
<td>{{ job.id }}</td>
<td><a href="{% url 'wooey:celery_results' job_id=job.pk %}">{{ job.job_name }}</a></td>
<td>{{ job.script.script_name }}</td>
Expand Down

0 comments on commit f9ef833

Please sign in to comment.