Merge lp:~pablorubianes-uy/loco-team-portal/fix.1320559 into lp:loco-team-portal

Proposed by Adnane Belmadiaf
Status: Merged
Approved by: Adnane Belmadiaf
Approved revision: 677
Merged at revision: 682
Proposed branch: lp:~pablorubianes-uy/loco-team-portal/fix.1320559
Merge into: lp:loco-team-portal
Diff against target: 12 lines (+1/-1)
1 file modified
loco_directory/teams/models.py (+1/-1)
To merge this branch: bzr merge lp:~pablorubianes-uy/loco-team-portal/fix.1320559
Reviewer Review Type Date Requested Status
Adnane Belmadiaf Approve
Review via email: mp+229529@code.launchpad.net

Commit message

Reversed the order of listing teams

To post a comment you must log in.
Revision history for this message
Chris Johnston (cjohnston) wrote :

Voting does not meet specified criteria. Required: Approve >= 1. Got: 1 Pending.

Revision history for this message
Adnane Belmadiaf (daker) wrote :

+1

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'loco_directory/teams/models.py'
2--- loco_directory/teams/models.py 2013-02-19 22:23:46 +0000
3+++ loco_directory/teams/models.py 2014-08-04 22:22:10 +0000
4@@ -128,7 +128,7 @@
5
6 class Meta:
7 db_table = 'teams'
8- ordering = ('approved', 'name',)
9+ ordering = ('-approved', 'name',)
10
11 def __unicode__(self):
12 return self.lp_name

Subscribers

People subscribed via source and target branches