diff --git a/inventory-app/inventory.py b/inventory-app/inventory.py index f035475..dc26fc8 100644 --- a/inventory-app/inventory.py +++ b/inventory-app/inventory.py @@ -134,7 +134,7 @@ class ShortenerForm(Form): class InventoryItemForm(CustomForm): type = SelectField("Type", choices=fetch_type_select()) name = StringField('Name') - issue_tracker = StringField('Issue Tracker') + external_link = StringField('External link') comment = StringField('Comment') inventory = FormField(InventoryForm) hardware = FormField(HardwareForm) diff --git a/inventory-app/templates/inventory_edit.html b/inventory-app/templates/inventory_edit.html index 3562f15..e1e7e02 100644 --- a/inventory-app/templates/inventory_edit.html +++ b/inventory-app/templates/inventory_edit.html @@ -83,8 +83,8 @@