mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-01-16 00:34:18 +01:00
Sort teams alphabetically
This commit is contained in:
@@ -61,7 +61,7 @@
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="@link(None)"><i>all projects</i></a></li>
|
||||
<li class="base-project"><a href="#">Teams</a></li>
|
||||
@for(team <- teams){
|
||||
@for(team <- teams.toIndexedSeq.sortBy(_.name.toLowerCase)){
|
||||
<li><a href="@link(Some("team:"+team.id))" title="team leader: @team.leader">@team.name</a></li>
|
||||
}
|
||||
@for(report <- projects.sortedReportsInfo){
|
||||
|
||||
Reference in New Issue
Block a user