@model LotteryWebApp.Models.TermResultHistoryModel @{ ViewData["Title"] = "Millions - Results History"; Layout = "~/Areas/Millions/Views/Shared/_Layout.cshtml"; ViewData["ActiveTab"] = "Results"; // Default to last 3 days if not specified if (string.IsNullOrEmpty(Model.fromDate)) { Model.fromDate = DateTime.Now.AddDays(-2).ToString("yyyy-MM-dd"); } if (string.IsNullOrEmpty(Model.toDate)) { Model.toDate = DateTime.Now.ToString("yyyy-MM-dd"); } } @using LotteryWebApp.Languages; @using LotteryWebApp.Common; @section Styles { }

@Lang.results

Loading results...
@Lang.have_chance_to_get
@Lang.millions_jackpot_today_htg
@section Scripts { }