84
83
url = models.URLField(_("URL"), max_length=350)
85
84
last_updated = models.DateTimeField(_("Last Updated"), null=True)
86
85
since = models.DateTimeField(_("Since"), help_text=_("On the list since"), null=True)
88
87
sourcepackage = models.ForeignKey(SourcePackage)
89
88
opportunitylist = models.ForeignKey(OpportunityList)
91
90
valid = models.BooleanField(_("Valid"), default=True)
92
experience = models.IntegerField(_("Required Experience"), choices=EXPERIENCE_CHOICES, null=True,
91
experience = models.IntegerField(_("Required Experience"), choices=EXPERIENCE_CHOICES, default=0,
93
92
help_text=_("Level of experience required for this specific opportunity."))