コード例 #1
0
ファイル: Site.java プロジェクト: davidadale/dc-web
 /** This method is the for pulling up the home page of the non-secure drive-cleaners site. */
 public static void index() {
   if (CustomerId.present()) {
     Customer customer = Customer.findById(CustomerId.get());
     renderTemplate("site/index.html", customer);
   } else {
     renderTemplate("site/index.html");
   }
 }