diff --git a/views/edit.php b/views/edit.php
index e528d29..e8264f7 100644
--- a/views/edit.php
+++ b/views/edit.php
@@ -9,13 +9,19 @@
-
Form->Label('Name', 'Name');
+ echo $this->Form->Label('Insert Name', 'Name');
+ ?>
+ For internal reference
+ Form->TextBox('Name');
?>
-
Form->Label('Insert', 'Body');
+ ?>
+ Plain Text and HTML
+ Form->TextBox('Body', array('multiline' => TRUE));
?>
@@ -23,6 +29,7 @@
Form->CheckBox('MobileBodyCheck', 'Use a separate insert for Mobile users?', array('checked' => 'checked'));
?>
+ If not checked the above insert will also be shown on the mobile theme.
-
-
Form->Label('Discussion', 'DiscussionID');
+ echo $this->Form->Label('Discussion ID', 'DiscussionID');
+ ?>
+ Find the ID in the discussion URL (www.yourforum.com/discussion/ID/title...)
+ Form->TextBox('DiscussionID');
?>