-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathView-Reports.aspx
More file actions
67 lines (66 loc) · 3.96 KB
/
View-Reports.aspx
File metadata and controls
67 lines (66 loc) · 3.96 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
<%@ Page Title="View Reports" Language="C#" MasterPageFile="~/Admin-Dashboard.Master" AutoEventWireup="true" CodeBehind="View-Reports.aspx.cs" Inherits="Z_Wallet.View_Reports" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<main>
<div class="dashboard-wrapper">
<div class="container-fluid dashboard-content">
<div class="row">
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
<div class="page-header">
<h2 class="pageheader-title"><i class="fa fa-fw fa-users"></i>Reports </h2>
<div class="page-breadcrumb">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/Admin" class="breadcrumb-link">Dashboard</a></li>
<li class="breadcrumb-item"><a href="/View-Reports" class="breadcrumb-link">View Reports</a></li>
</ol>
</nav>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
<div class="card">
<h5 class="card-header">List of Members</h5>
<div class="card-body">
<div class="table-responsive">
<table class="table table-striped table-bordered first">
<thead>
<tr>
<th>Account No.</th>
<th>Full Name</th>
<th>Email</th>
<th>Phone Number</th>
<th>Status</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<% foreach (var report in ReportsList)
{ %>
<tr>
<td><%= report.AccountNumber %></td>
<td><%= report.FullName %></td>
<td><%= report.Email %></td>
<td><%= report.PhoneNumber %></td>
<td>
<span class="badge <%= report.StatusBadgeClass %> text-white"><%= report.Status %></span>
</td>
<td class="align-right text-center">
<a href="/Member-Reports.aspx?accountNumber=<%= report.AccountNumber %>" class="text-primary font-weight-bold text-xs" data-toggle="tooltip" data-original-title="View">
<i class="fa fa-eye text-info fa-lg"></i>
</a>
</td>
</tr>
<% } %>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
</asp:Content>