/**
  * Return the template file to be used for this form.
  * @param string $type
  * @return string
  */
 public function getHTMLTemplate($type = 'default')
 {
     if ($this->getId() == 0) {
         return "lists_new_form_position.html";
     } else {
         return parent::getHTMLTemplate($type);
     }
 }