Adnane Belmadiaf has proposed merging lp:~daker/loco-directory/fix.helptext 
into lp:loco-directory.

Requested reviews:
  loco-directory-dev (loco-directory-dev)

For more details, see:
https://code.launchpad.net/~daker/loco-directory/fix.helptext/+merge/68220
-- 
https://code.launchpad.net/~daker/loco-directory/fix.helptext/+merge/68220
Your team loco-directory-dev is requested to review the proposed merge of 
lp:~daker/loco-directory/fix.helptext into lp:loco-directory.
=== modified file 'loco_directory/teams/models.py'
--- loco_directory/teams/models.py	2011-07-04 01:15:21 +0000
+++ loco_directory/teams/models.py	2011-07-18 09:42:35 +0000
@@ -85,26 +85,26 @@
     lp_name = models.CharField(_("Launchpad Team ID"), max_length=40, null=True)
     name = models.CharField(_("Team Name"), max_length=80, null=True)
     countries = models.ManyToManyField(Country)
-    spr = models.CharField(_("State/Province/Region"), max_length=50, null=True, blank=True)
-    city = models.CharField(_("City"), max_length=50, null=True, blank=True)
-    wiki_url = models.URLField(_("Ubuntu Wiki Page"), verify_exists=False, null=True, blank=True)
-    web_url = models.URLField(_("Website"), verify_exists=False, null=True, blank=True)
-    ml_url = models.URLField(_("Mailing List URL"), verify_exists=False, null=True, blank=True)
-    forum_url = models.URLField(_("Forums URL"), verify_exists=False, null=True, blank=True)
-    email = models.EmailField(_("Email Address"), null=True, blank=True)
+    spr = models.CharField(_("State/Province/Region"), max_length=50, null=True, blank=True,help_text=_("State/Province/Region"))
+    city = models.CharField(_("City"), max_length=50, null=True, blank=True, help_text=_("City"))
+    wiki_url = models.URLField(_("Ubuntu Wiki Page"), verify_exists=False, null=True, blank=True, help_text=_("Ubuntu Wiki Page"))
+    web_url = models.URLField(_("Website"), verify_exists=False, null=True, blank=True, help_text=_("Website"))
+    ml_url = models.URLField(_("Mailing List URL"), verify_exists=False, null=True, blank=True, help_text=_("Mailing List URL"))
+    forum_url = models.URLField(_("Forums URL"), verify_exists=False, null=True, blank=True, help_text=_("Forums URL"))
+    email = models.EmailField(_("Email Address"), null=True, blank=True, help_text=_("Email Address"))
     irc_chan = models.CharField(_("IRC Channel"),
                                 max_length=25, null=True, blank=True,
                                 help_text=_("IRC Channel name that is hosted on "
                                 "the freenode IRC network. Ex. #ubuntu-us-fl"))
     provides_support = models.BooleanField(_("Provides local support"),
                                            default=True)
-    approved = models.BooleanField(_("Approved Team"), default=False)
-    approved_date = models.DateField(_("Date Approved"), null=True, blank=True)
-    expires_date = models.DateField(_("Reapproval Date"), null=True, blank=True)
+    approved = models.BooleanField(_("Approved Team"), default=False, help_text=_("Approved Team"))
+    approved_date = models.DateField(_("Date Approved"), null=True, blank=True, help_text=_("Date Approved"))
+    expires_date = models.DateField(_("Reapproval Date"), null=True, blank=True, help_text=_("Reapproval Date"))
     owner_profile = models.ForeignKey(UserProfile, related_name='owner', null=True)
     admin_profiles = models.ManyToManyField(UserProfile, related_name='admins')
     contact_profiles = models.ManyToManyField(UserProfile, related_name='contacts')
-    mugshot_url = models.URLField(_("Team Logo"), verify_exists=False, null=True, blank=True)
+    mugshot_url = models.URLField(_("Team Logo"), verify_exists=False, null=True, blank=True, help_text=_("Team Logo"))
     languages = models.ManyToManyField(Language)
     flickr_id = models.CharField(_("Flickr User/Group ID"), max_length=20, null=True, blank=True,
                                 help_text=_("To get your Flickr user id go to http://idgettr.com. Ex. 47353004@N03"))

_______________________________________________
Mailing list: https://launchpad.net/~loco-directory-dev
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~loco-directory-dev
More help   : https://help.launchpad.net/ListHelp

Reply via email to