Merge lp:~dholbach/loco-team-portal/quickfixes into lp:~ltp-devs/loco-team-portal/0.1

Proposed by Daniel Holbach
Status: Merged
Merge reported by: Daniel Holbach
Merged at revision: not available
Proposed branch: lp:~dholbach/loco-team-portal/quickfixes
Merge into: lp:~ltp-devs/loco-team-portal/0.1
Diff against target: None lines
To merge this branch: bzr merge lp:~dholbach/loco-team-portal/quickfixes
Reviewer Review Type Date Requested Status
LoCo Team Portal Developers Pending
Review via email: mp+7670@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Daniel Holbach (dholbach) wrote :

Please review, these changes are necessary to make LD work properly.

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 2009-06-18 14:10:11 +0000
3+++ loco_directory/teams/models.py 2009-06-19 09:35:03 +0000
4@@ -35,9 +35,9 @@
5
6
7 class Team(models.Model):
8- lp_name = models.SlugField(_("Launchpad Team ID"), max_length=20, null=True,
9+ lp_name = models.SlugField(_("Launchpad Team ID"), max_length=40, null=True,
10 blank=True)
11- name = models.CharField(_("Team Name"), max_length=50, null=True, blank=True)
12+ name = models.CharField(_("Team Name"), max_length=80, null=True, blank=True)
13 country = models.CharField(_("Country"), max_length=50, null=True, blank=True)
14 spr = models.CharField(_("State/Province/Region"), max_length=50, null=True, blank=True)
15 city = models.CharField(_("City"), max_length=50, null=True, blank=True)
16
17=== modified file 'loco_directory/teams/views.py'
18--- loco_directory/teams/views.py 2009-06-18 14:10:11 +0000
19+++ loco_directory/teams/views.py 2009-06-19 09:34:07 +0000
20@@ -6,6 +6,7 @@
21 from common import utils
22 from forms import *
23 from models import Team
24+from includes.launchpad import *
25
26 def teams(request):
27 teams = Team.objects.all_teams()

Subscribers

People subscribed via source and target branches