23 July ‘14

Modified the form fields today and added a little more design to it. I learnt how to include drop-down fields in Django models.

STATUS_CHOICES = (
        ('New', 'New'),
        ('Assigned', 'Assigned'),
        ('Discard', 'Discard'),
        ('Patch to review', 'Patch under review'),
        ('Resolved', 'Resolved'),
    )
    bugstatus = models.CharField(max_length=100, default='New', choices = STATUS_CHOICES)

    PRIORITY_CHOICES = (
        ('High', 'High'),
        ('Normal','Normal'),
        ('Low', 'Low'),
    )
    bugpriority = models.CharField(max_length=100, default='Unprioritised', choices = PRIORITY_CHOICES)
    ```
 
0
Kudos
 
0
Kudos

Now read this

3 Aug ‘14

The necessary JS and CSS files were not being loaded. I ran a “ python manage.py findstatic ”. It told me some apps were not installed. django_extensions debug-toolbar South django_tables2 pyscopg2 After installing these, findstatic was... Continue →