Merge lp:~dholbach/harvest/schema-changes into lp:harvest
Proposed by
Daniel Holbach
Status: | Merged | ||||||||
---|---|---|---|---|---|---|---|---|---|
Approved by: | James Westby | ||||||||
Approved revision: | 190 | ||||||||
Merged at revision: | 186 | ||||||||
Proposed branch: | lp:~dholbach/harvest/schema-changes | ||||||||
Merge into: | lp:harvest | ||||||||
Diff against target: |
82 lines (+35/-1) 3 files modified
harvest/common/launchpad.py (+0/-1) harvest/opportunities/models.py (+17/-0) harvest/opportunities/views.py (+18/-0) |
||||||||
To merge this branch: | bzr merge lp:~dholbach/harvest/schema-changes | ||||||||
Related bugs: |
|
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
James Westby | Approve | ||
Review via email: mp+26687@code.launchpad.net |
This proposal supersedes a proposal from 2010-06-02.
To post a comment you must log in.
Hi,
Looks ok to me.
Two comments though:
38 +class Person( models. Model): TextField( _("Who" ), max_length=80)
39 + lpid = models.
is that long enough?
70 + if form.cleaned_ data["comment" ] != opportunity. comment: log_action( request. user.username, data["comment" ], opportunity)
71 + models.
72 + action="changed comment to: '%s'" % \
73 + form.cleaned_
74 + opportunity=
that will overflow
action = models. TextField( _("Action" ), max_length=120)
if the comment is long won't it?
You probably want to ellipsise the comment in the action if it is
long.
Thanks,
James