2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-27 01:00:53 +00:00

Added 'URL' field to company

This commit is contained in:
Oliver
2018-04-24 18:01:15 +10:00
parent b114001678
commit 1df1bf2c07
2 changed files with 22 additions and 0 deletions
InvenTree/company

@ -42,6 +42,8 @@ class Company(models.Model):
contact = models.CharField(max_length=100,
blank=True)
URL = models.URLField(blank=True, help_text='Link to external company information')
image = models.ImageField(upload_to=rename_company_image, max_length=255, null=True, blank=True)
notes = models.TextField(blank=True)