-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlockedGameList.aspx
More file actions
77 lines (66 loc) · 3.46 KB
/
BlockedGameList.aspx
File metadata and controls
77 lines (66 loc) · 3.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<%@ Page Title="" Language="C#" MasterPageFile="~/Default.master" AutoEventWireup="true" CodeFile="BlockedGameList.aspx.cs" Inherits="analytics_BlockedGameList" %>
<%@ Register Src="ctrlYourGames.ascx" TagName="ctrlYourGames" TagPrefix="uc2" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
</asp:Content>
<asp:Content ID="Content4" ContentPlaceHolderID="JSPlaceHolder" runat="Server">
<script type='text/javascript' src='https://www.google.com/jsapi'></script>
<script type="text/javascript" src="js/daterangepicker/date.js"></script>
<script type="text/javascript" src="js/daterangepicker/daterangepicker.js"></script>
<!-- Tablesorter: required for bootstrap -->
<link rel="stylesheet" href="css/theme.bootstrap.css">
<script type='text/javascript' src="js/table/jquery.tablesorter.js"></script>
<script type='text/javascript' src="js/table/jquery.tablesorter.widgets.js"></script>
<!-- Tablesorter: optional -->
<link rel="stylesheet" href="css/jquery.tablesorter.pager.css">
<script type='text/javascript' src="js/table/jquery.tablesorter.pager.js"></script>
<script type='text/javascript' src='js/FGSUtils.js'></script>
<script type='text/javascript' src='js/FGSGlobals.js'></script>
<script type='text/javascript' src='js/FGSBlockedGames.js'></script>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="YourGamesContentPlaceHolder" runat="Server">
<uc2:ctrlYourGames ID="CtrlYourGames" runat="server" />
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="MainContentPlaceHolder" runat="Server">
<ul class="breadcrumb" id="BreadCrumb" autoupdate="true">
<li>Manage Blocked Games <span class="divider"></span></li>
<li>Games <span class="divider"></span></li>
<li>List<span class="divider"></span></li>
</ul>
<div class="row-fluid">
<div class="col-md-12">
<div class="form-horizontal">
<fieldset>
<!-- Form Name -->
<legend>Blocked Games</legend>
<table class="tablesorter" id="tbl_blocksites">
<thead>
<tr>
<th style="text-align: center;" width="5%">#
</th>
<th style="text-align: center;" width="15%">Added Date
</th>
<th width="20%">Game Title
</th>
<th width="55%">Web Site
</th>
<th style="text-align: center;" width="10%">Action
</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div class="panel panel-success">
<div class="panel-body">
<div class="pull-right">
Changes will not be applied unless click apply button. <a href="#" id="btnApply" class="btn btn-primary">Apply Changes</a>
</div>
</div>
</div>
</fieldset>
</div>
</div>
<!--/span-->
</div>
<!--/row-->
</asp:Content>