Skip to content

Commit

Permalink
chore: fixed styling a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
rcmorano committed Jan 9, 2025
1 parent aa30fb6 commit 9275209
Showing 1 changed file with 20 additions and 19 deletions.
39 changes: 20 additions & 19 deletions templates/dash_template.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -23,26 +23,27 @@

{% for project in all_projects %}
<tr>
<td><a href="{{project.repo_url}}">{{project.repo}}</a></td>
<td><a href="{{project.repo_url}}">{{project.repo}}</a>

<!-- Other -->
{% for workflow in project.other_workflows %}
<tr>
<td class="indented">{{workflow.lf_workflow_name}} </td>
<td class="{{workflow.display_class}}">
{%- if workflow.is_stale %}
<span class="gray-cell">stale</span>
<i class="gray-cell fa fa-clock-o"></i><br>
{%- endif %}
{{workflow.workflow_status}}
<i class="{{workflow.icon_class}}"></i>
</td>
<td class="{{workflow.display_class}}">
<a href="{{workflow.workflow_url}}">
{{workflow.conclusion_time}}
</a>
</td>
</tr>
<!-- Other -->
{% for workflow in project.other_workflows %}
<tr>
<td class="indented">{{workflow.lf_workflow_name}} </td>
<td class="{{workflow.display_class}} align-center">
{%- if workflow.is_stale %}
<span class="gray-cell">stale</span>
<i class="gray-cell fa fa-clock-o"></i><br>
{%- endif %}
{{workflow.workflow_status}}
<i class="{{workflow.icon_class}}"></i>
</td>
<td class="{{workflow.display_class}} align-center">
<a href="{{workflow.workflow_url}}">
{{workflow.conclusion_time}}
</a>
</td>
</tr>
</td>
{% endfor %}
</tr>
{% endfor %}
Expand Down

0 comments on commit 9275209

Please sign in to comment.