generated from MinBZK/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extra feedback on group by overview (#340)
- Loading branch information
Showing
8 changed files
with
39 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,22 @@ | ||
{% macro item(loop, project, show_lifecycles) -%} | ||
<tr class="rvo-table-row" | ||
{% if loop.last and projects|length == limit %} data-marker="last-element" hx-get="/algorithm-systems/?skip={{ next }}" hx-swap="beforeend" hx-trigger="revealed" {% endif %}> | ||
<td class="rvo-table-cell" style="padding-left: 0"> | ||
<a class="rvo-link rvo-link--no-underline rvo-link--zwart" | ||
href="/algorithm-system/{{ project.id }}/details/">{{ project.name }}</a> | ||
</td> | ||
{% if show_lifecycles %} | ||
<td class="rvo-table-cell"> | ||
<span class="rvo-text--subtle">{{ project.lifecycle.display_value }}</span> | ||
{% else %} | ||
<td class="rvo-table-cell" style="padding-left: 0"> | ||
{% endif %} | ||
<a class="rvo-link rvo-link--no-underline rvo-link--zwart" | ||
href="/algorithm-system/{{ project.id }}/details/">{{ project.name }}</a> | ||
</td> | ||
{% endif %} | ||
<td class="rvo-table-cell"> | ||
<span class="rvo-text--subtle" style="white-space: nowrap">{{ project.last_edited | time_ago(language) }} | ||
{% trans %} ago{% endtrans %}</span> | ||
</td> | ||
</tr> | ||
{% endmacro %} | ||
{% if show_lifecycles %} | ||
<td class="rvo-table-cell"> | ||
<span class="rvo-text--subtle">{{ project.lifecycle.display_value }}</span> | ||
</td> | ||
{% endif %} | ||
<td class="rvo-table-cell"> | ||
<span class="rvo-text--subtle" style="white-space: nowrap">{{ project.last_edited | time_ago(language) }} | ||
{% trans %} ago{% endtrans %}</span> | ||
</td> | ||
</tr> | ||
{% endmacro %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters