protected function show_products_list()
 {
     $products = $this->productService->getAllProducts();
     $this->site->content .= $this->render('products/admin_list.php', ['products' => $products]);
     return $this->render('products/admin_create.php');
 }