File diff 26ac00e8641f → 6e380dba29b3
www/conservancy/apps/assignment/models.py
Show inline comments
...
 
@@ -28,18 +28,18 @@ class Assignment(models.Model):
 

	
 
    uuid = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
 
    full_name = models.CharField(max_length=255)
 
    email = models.EmailField('Email address (to contact you if we have questions)')
 
    country_of_residence = CountryField()
 
    repositories = models.TextField(
 
        'Code repositories containing contributions of yours whose copyright you\'d like to assign',
 
        'Code repositories containing contributions of yours whose copyright you are assigning',
 
        help_text='List of URLs, one per line',
 
        validators=[validate_mutiple_urls],
 
    )
 
    all_emails = models.TextField(
 
        'All email addresses used by you to contribute to the above (i.e. in the commit logs)',
 
        'All email addresses or other unique user identities, such as nicknames or handles, used by you to contribute to the above (i.e. in the commit logs)',
 
    )
 
    period_begins = models.DateField(
 
        'Assignment period begins',
 
    )
 
    period_end_type = models.CharField(
 
        'Time period to assign',
...
 
@@ -52,8 +52,8 @@ class Assignment(models.Model):
 
    period_ends = models.DateField(
 
        'Assignment period ends (if applicable)',
 
        blank=True,
 
        null=True,
 
    )
 
    attestation_of_copyright = models.BooleanField(
 
        'I agree to be bound by the terms of the Copyright Assignment Agreement above, and that I own the copyright in the works defined above',
 
        'By checking the box below, I am confirming that I agree to be bound by the terms of the Copyright Assignment Agreement above.',
 
    )