element['slug_field'])
		{
			$slug_field = (string) $this->element['slug_field'];
		}
		else
		{
			$slug_field = $this->item->getColumnAlias('slug');
		}
		if ($this->element['slug_format'])
		{
			$slug_format = (string) $this->element['slug_format'];
		}
		if ($this->element['slug_class'])
		{
			$slug_class = (string) $this->element['slug_class'];
		}
		// Get the regular display
		$html = parent::getRepeatable();
		$slug = $this->item->$slug_field;
		$html .= '
' . '';
		$html .= JText::sprintf($slug_format, $slug);
		$html .= '';
		return $html;
	}
}