-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFacilityPage.aspx
85 lines (79 loc) · 4.47 KB
/
FacilityPage.aspx
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
77
78
79
80
81
82
83
84
85
<%@ Page Title="" Language="C#" MasterPageFile="~/AdminMasterPage.master" AutoEventWireup="true" CodeFile="FacilityPage.aspx.cs" Inherits="FacilityPage" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<div class="content">
<div class="container-fluid">
<!-- start page title -->
<div class="row">
<div class="col-12">
<div class="page-title-box">
<div class="page-title-right">
<ol class="breadcrumb m-0">
<li class="breadcrumb-item"><a href="AdminDashBoard.aspx">Society&More</a></li>
<li class="breadcrumb-item active">Facility Book</li>
</ol>
</div>
<h4 class="page-title">Facility Book</h4>
<div class="col-auto">
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-12">
<div class="card">
<div class="card-body">
<h4 class="header-title mb-3">Facility Book Data</h4>
<div class="table-responsive">
<asp:Repeater ID="RepeaterUser" runat="server">
<HeaderTemplate>
<table class="table mb-0">
<thead>
<tr>
<th>#</th>
<th>Facility Name</th>
<th>From Date</th>
<th>To Date</th>
<th>From Time</th>
<th>To Time</th>
<th>Descrpition</th>
<th>Society Name</th>
<th>Status</th>
<th>Action</th>
</tr>
</thead>
<tbody>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td><%# Eval("Id")%></td>
<td><%# Eval("FacilityName")%></td>
<td><%# Eval("FacilityDateFrom","{0:dd-MM-yyyy}")%></td>
<td><%# Eval("FacilityDateTill","{0:dd-MM-yyyy}")%></td>
<td><%# Eval("FacilityTimeFrom")%></td>
<td><%# Eval("FacilityTimeTill")%></td>
<td><%# Eval("Descrpition")%></td>
<td><%# Eval("SocietyName")%></td>
<td><%# Eval("Status")%></td>
<td>
<a class="btn btn-success btn-sm" href="FacilityUpdate.aspx?Id=<%#Eval("Id") %>">
<i class="fas fa-reply"></i>
Edit
</a></td>
</tr>
</ItemTemplate>
<FooterTemplate>
</tbody>
</table>
</FooterTemplate>
</asp:Repeater>
</div>
</div>
</div>
</div>
<!-- end col -->
</div>
</div>
</div>
</asp:Content>