-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.html
28 lines (27 loc) · 959 Bytes
/
payment.html
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
<!DOCTYPE html>
<html lang="en">
<head>
{{ include('snippets/meta.html', {"title": "Plenty Admin Dashboard", "description": "This is the dashboard of the admin UI", "author": "Jamie McDonnell"}) }}
</head>
{{ include('snippets/header.html', {"page": "payment", "dashboard" : false, "settings" : false, "contact" : false, "organization" : false}) }}
<div class="container-fluid">
<div class="row"> {{ include('snippets/sidebar-nav.html') }}
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2">
<ol class="breadcrumb">
<li><a href="organization.html?sub=payment">Organization 1</a></li>
<li class="active">Payment Type A</li>
</ol>
<h1 class="page-header">Payment Type A</h1>
<div class="row paymentDetails">
- type
- Platform ID
- Start Date
- End Date
- Last Processing Time
</div>
</div>
</div>
</div>
{{ include('snippets/footer.html') }}
<script src="js/payment.js"></script>
</body></html>