Skip to content

Commit

Permalink
Adjust the order of task groups in an OKR.
Browse files Browse the repository at this point in the history
The default order is alphabetic: done, in progress, to do. This patch
did a reverse on the order, so the new order will be like this:
To do, in progress, done.

This patch also did a tiny adjustment of font style, cancelled the bold
style for the task groups (to do, in progress, to do) to help make the
whole slide more reasonable.
  • Loading branch information
miguoredhat committed Jul 22, 2019
1 parent 89e3910 commit b6a255d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/errata/slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
* **Update**: (*{{epic.status_update.updated.split('T')[0]}}*) {{epic.status_update.cleaned}}{% if attribution %} — *{{epic.status_update.author}}*{% endif %}{% endif %}

{.column}
{% for category in by_epic[key] | sort %}
**{{ category }}**:
{% for category in by_epic[key] | sort(reverse = True) %}
{{ category }}:
{% for issue in by_epic[key][category] %}
* ([{{ issue.key }}]({{ server }}/browse/{{ issue.key }}))
{{ issue['summary'].replace('[', '').replace(']', ':') }}{% endfor %}
Expand Down

0 comments on commit b6a255d

Please sign in to comment.