public function display()
    {
        $html = '';
        // Allow to override the older jquery to use a new one :)
        // Added for the 1.3 compatibility to keep using the recent code
        if (_PS_VERSION_ < '1.4') {
            $html .= MondialRelay::getjQueryCompatibility();
        }
        $html .= '
			<script type="text/javascript" language="javascript">
				var _PS_MR_MODULE_DIR_ = "' . MondialRelay::$moduleURL . '";
			</script>';
        $html .= $this->displayOrdersTable();
        $html .= '<br/><br/>';
        $html .= $this->displayhistoriqueForm();
        echo $html;
    }