public ActionResult ViewUser(string username) { PandaRepo db = new PandaRepo(); Account user = db.GetUserByName(username); return(View(user)); }