Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Blizzard Blast
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Martina Therese R. Reyes
Blizzard Blast
Commits
8405d450
Commit
8405d450
authored
Dec 10, 2021
by
Martina Therese R. Reyes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a receipt html file to accommodate receipt view
parent
61166a2e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
63 additions
and
0 deletions
+63
-0
receipt.html
blizzardblast/templates/receipt.html
+63
-0
No files found.
blizzardblast/templates/receipt.html
0 → 100644
View file @
8405d450
{% extends 'blizzardblast\templates\base.html' %}
{% load static %}
{% block title %}Create Order{% endblock %}
{% block styles %}
{% endblock %}
{% block content %}
<h1
class=
'view-title'
>
Order
</h1>
<!-- SEARCH BOX -->
<div
id=
"filter-area"
>
<button
class=
"filter-button"
><a
href=
"{% url 'order' %}"
>
Order Slip
</a></button>
<button
class=
"filter-button"
><a
href=
"{% url 'receipt' %}"
>
Receipt
</a></button>
<input
class=
"search-bar"
size=
60
type=
"text"
placeholder=
"Search.."
>
<button
class=
"search-button"
>
Search
</button>
</div>
<div
id=
"CRUD-features"
>
<button
class=
"crud-button"
>
Add Order
</button>
<button
class=
"crud-button"
>
Delete Order
</button>
<button
class=
"crud-button"
>
Refresh
</button>
</div>
<div
id=
"receipt-table"
>
<table>
<!-- TABLE HEADER -->
<tr>
<th>
customer_name
</th>
<th>
transaction_no
</th>
<th>
customer_order
</th>
<th>
price_per_item
</th>
<th>
price_per_order
</th>
<th>
employee_name
</th>
<th>
total_sales
</th>
</tr>
<!-- TABLE ROW WITH INFO -->
<tr>
<th>
customer_name
</th>
<th>
transaction_no
</th>
<th>
customer_order
</th>
<th>
price_per_item
</th>
<th>
price_per_order
</th>
<th>
employee_name
</th>
<th>
total_sales
</th>
</tr>
<!-- TABLE ROW WITHOUT INFO -->
<tr>
<th>
customer_name
</th>
<th>
transaction_no
</th>
<th>
customer_order
</th>
<th>
price_per_item
</th>
<th>
price_per_order
</th>
<th>
employee_name
</th>
<th>
total_sales
</th>
</tr>
</table>
</div>
{% endblock %}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment