1.I am working in a project,were i am storing student name and phone number in a spreadsheet(.xls).
2.I am using django framework,in my app which have a button namely import from spreadsheet.So if i press this button i should able to upload a .xls file,and by pressing the save button the details namely name and phone number should be saved in database using parsing.
So how to achieve this.
My models.py is
class Contactlist
report = models.ForeignKey(Report, null=True)
cname = models.CharField(max_length=100)
pnumber = models.IntegerField()
Thanks