djLint/tests/jinja_adminlte/examples-invoice.html
2021-07-29 13:41:34 -05:00

313 lines
17 KiB
HTML

{% extends "layouts/base.html" %}
{% block title %}Invoice {% endblock %}
<!-- Element injected in the BODY element -->
{% block body_class %}
sidebar-mini
{% endblock body_class %}
<!-- Specific Page CSS goes HERE -->
{% block stylesheets %}
<!-- Google Font: Source Sans Pro -->
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
<!-- Font Awesome -->
<link rel="stylesheet" href="/static/assets/plugins/fontawesome-free/css/all.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="/static/assets/css/adminlte.min.css">
{% endblock stylesheets %}
{% block content %}
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<h1>Invoice</h1>
</div>
<div class="col-sm-6">
<ol class="breadcrumb float-sm-right">
<li class="breadcrumb-item">
<a href="#">Home</a>
</li>
<li class="breadcrumb-item active">
Invoice
</li>
</ol>
</div>
</div>
</div>
<!-- /.container-fluid -->
</section>
<section class="content">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="callout callout-info">
<h5>
<i class="fas fa-info"></i>
Note:
</h5>
This page has been enhanced for printing. Click the print button at the bottom of the invoice to test.
</div>
<!-- Main content -->
<div class="invoice p-3 mb-3">
<!-- title row -->
<div class="row">
<div class="col-12">
<h4>
<i class="fas fa-globe"></i>
AdminLTE, Inc.
<small class="float-right">
Date: 2/10/2014
</small>
</h4>
</div>
<!-- /.col -->
</div>
<!-- info row -->
<div class="row invoice-info">
<div class="col-sm-4 invoice-col">
From
<address>
<strong>Admin, Inc.</strong>
<br>
795 Folsom Ave, Suite 600
<br>
San Francisco, CA 94107
<br>
Phone: (804) 123-5432
<br>
Email: info@almasaeedstudio.com
</address>
</div>
<!-- /.col -->
<div class="col-sm-4 invoice-col">
To
<address>
<strong>John Doe</strong>
<br>
795 Folsom Ave, Suite 600
<br>
San Francisco, CA 94107
<br>
Phone: (555) 539-1037
<br>
Email: john.doe@example.com
</address>
</div>
<!-- /.col -->
<div class="col-sm-4 invoice-col">
<b>
Invoice #007612
</b>
<br>
<br>
<b>
Order ID:
</b>
4F3S8J
<br>
<b>
Payment Due:
</b>
2/22/2014
<br>
<b>
Account:
</b>
968-34567
</div>
<!-- /.col -->
</div>
<!-- /.row -->
<!-- Table row -->
<div class="row">
<div class="col-12 table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>Qty</th>
<th>Product</th>
<th>Serial #</th>
<th>Description</th>
<th>Subtotal</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Call of Duty</td>
<td>
455-981-221
</td>
<td>
El snort testosterone trophy driving gloves handsome
</td>
<td>
$64.50
</td>
</tr>
<tr>
<td>
1
</td>
<td>
Need for Speed IV
</td>
<td>
247-925-726
</td>
<td>
Wes Anderson umami biodiesel
</td>
<td>
$50.00
</td>
</tr>
<tr>
<td>
1
</td>
<td>
Monsters DVD
</td>
<td>
735-845-642
</td>
<td>
Terry Richardson helvetica tousled street art master
</td>
<td>
$10.70
</td>
</tr>
<tr>
<td>
1
</td>
<td>
Grown Ups Blue Ray
</td>
<td>
422-568-642
</td>
<td>
Tousled lomo letterpress
</td>
<td>
$25.99
</td>
</tr>
</tbody>
</table>
</div>
<!-- /.col -->
</div>
<!-- /.row -->
<div class="row">
<!-- accepted payments column -->
<div class="col-6">
<p class="lead">
Payment Methods:
</p>
<img src="/static/assets/img/credit/visa.png" alt="Visa">
<img src="/static/assets/img/credit/mastercard.png" alt="Mastercard">
<img src="/static/assets/img/credit/american-express.png"
alt="American Express">
<img src="/static/assets/img/credit/paypal2.png" alt="Paypal">
<p class="text-muted well well-sm shadow-none"
style="margin-top: 10px;">
Etsy doostang zoodles disqus groupon greplin oooj voxy zoodles, weebly ning heekya handango imeem
plugg
dopplr jibjab, movity jajah plickers sifteo edmodo ifttt zimbra.
</p>
</div>
<!-- /.col -->
<div class="col-6">
<p class="lead">
Amount Due 2/22/2014
</p>
<div class="table-responsive">
<table class="table">
<tr>
<th style="width:50%">Subtotal:</th>
<td>
$250.30
</td>
</tr>
<tr>
<th>
Tax (9.3%)
</th>
<td>
$10.34
</td>
</tr>
<tr>
<th>
Shipping:
</th>
<td>
$5.80
</td>
</tr>
<tr>
<th>
Total:
</th>
<td>
$265.24
</td>
</tr>
</table>
</div>
</div>
<!-- /.col -->
</div>
<!-- /.row -->
<!-- this row will not appear when printing -->
<div class="row no-print">
<div class="col-12">
<a href="invoice-print.html"
rel="noopener"
target="_blank"
class="btn btn-default">
<i class="fas fa-print"></i>
Print
</a>
<button type="button" class="btn btn-success float-right">
<i class="far fa-credit-card"></i>
Submit
Payment
</button>
<button type="button"
class="btn btn-primary float-right"
style="margin-right: 5px;">
<i class="fas fa-download"></i>
Generate PDF
</button>
</div>
</div>
</div>
<!-- /.invoice -->
</div>
<!-- /.col -->
</div>
<!-- /.row -->
</div>
<!-- /.container-fluid -->
</section>
<!-- /.content -->
</div>
{% endblock content %}
<!-- Specific Page JS goes HERE -->
{% block javascripts %}
<!-- jQuery -->
<script src="/static/assets/plugins/jquery/jquery.min.js"></script>
<!-- Bootstrap 4 -->
<script src="/static/assets/plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- AdminLTE App -->
<script src="/static/assets/js/adminlte.min.js"></script>
<!-- AdminLTE for demo purposes -->
<script src="/static/assets/js/demo.js"></script>
{% endblock javascripts %}