diff --git a/inventory-app/inventory.py b/inventory-app/inventory.py index 6391fe5..23df5d0 100644 --- a/inventory-app/inventory.py +++ b/inventory-app/inventory.py @@ -149,8 +149,6 @@ class InventoryItemForm(CustomForm): inventory = FormField(InventoryForm) hardware = FormField(HardwareForm) shortener = FormField(ShortenerForm) - _description_placeholder = "Insert Markdown here." - description = TextAreaField('Description', [validators.optional(), validators.length(max=3000)], render_kw={"placeholder": _description_placeholder}) location = StringField('Location') def setup_defaults_add(self): setup_default_owner(self.inventory.form.owner.form.username) diff --git a/inventory-app/templates/inventory_edit.html b/inventory-app/templates/inventory_edit.html index 43c13f4..58f94b1 100644 --- a/inventory-app/templates/inventory_edit.html +++ b/inventory-app/templates/inventory_edit.html @@ -116,10 +116,6 @@
-
Description
-

- {{ form.description(rows='15',cols='100') }} -