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
77097ef0
Commit
77097ef0
authored
Dec 10, 2021
by
Martina Therese R. Reyes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added dummy information in the order slip and receipt
tables in their respective views. Changed styles accordingly.
parent
d8067f5f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
61 additions
and
30 deletions
+61
-30
styles.css
blizzardblast/static/css/styles.css
+13
-1
order.html
blizzardblast/templates/order.html
+20
-14
receipt.html
blizzardblast/templates/receipt.html
+28
-15
No files found.
blizzardblast/static/css/styles.css
View file @
77097ef0
@import
url('https://fonts.googleapis.com/css2?family=Lato&family=Poppins:wght@200&display=swap')
;
@import
url('https://fonts.googleapis.com/css2?family=Lato&family=Poppins:wght@200&display=swap')
;
/*INDEX.HTML
/*INDEX.HTML
COLOR SCHEME
BLACK - #000505
BLACK - #000505
ENG VIOLET - #3B3355
ENG VIOLET - #3B3355
DARK BLUE GREY - #5D5D81
DARK BLUE GREY - #5D5D81
...
@@ -128,6 +129,10 @@ header {
...
@@ -128,6 +129,10 @@ header {
}
}
/* ======== ORDER.HTML and RECEIPT.HTML ============ */
/* ======== ORDER.HTML and RECEIPT.HTML ============ */
.title-area
{
text-align
:
center
;
}
.button-container
{
.button-container
{
display
:
flex
;
display
:
flex
;
justify-content
:
space-evenly
;
justify-content
:
space-evenly
;
...
@@ -215,13 +220,20 @@ header {
...
@@ -215,13 +220,20 @@ header {
justify-content
:
center
;
justify-content
:
center
;
}
}
a
{
a
:link
{
text-decoration
:
none
;
text-decoration
:
none
;
border
:
none
;
color
:
#3B3355
;
margin
:
0.3rem
;
padding
:
0.5rem
;
border-radius
:
2rem
;
}
}
a
:hover
{
a
:hover
{
text-decoration
:
underline
;
text-decoration
:
underline
;
cursor
:
pointer
;
cursor
:
pointer
;
background-color
:
#3B3355
;
color
:
#BFCDE0
;
}
}
table
,
th
{
table
,
th
{
...
...
blizzardblast/templates/order.html
View file @
77097ef0
...
@@ -8,7 +8,10 @@
...
@@ -8,7 +8,10 @@
{% block content %}
{% block content %}
<h1
class=
'view-title'
>
Order
</h1>
<div
class=
"title-area"
>
<h1
class=
'view-title'
>
Order
</h1>
<h3
class=
'view-subtitle'
>
Order Slip
</h3>
</div>
<!-- SEARCH AREA-->
<!-- SEARCH AREA-->
<div
id=
"filter-area"
>
<div
id=
"filter-area"
>
<button
class=
"filter-button"
><a
href=
"{% url 'order' %}"
>
Order Slip
</a></button>
<button
class=
"filter-button"
><a
href=
"{% url 'order' %}"
>
Order Slip
</a></button>
...
@@ -39,24 +42,27 @@
...
@@ -39,24 +42,27 @@
<!-- TABLE ROW WITH INFO -->
<!-- TABLE ROW WITH INFO -->
<tr>
<tr>
<th>
customer_no
</th>
<th>
2039
</th>
<th>
customer_nam
e
</th>
<th>
Anna Do
e
</th>
<th>
date
</th>
<th>
11/13/15
</th>
<th>
size
</th>
<th>
12 oz
</th>
<th>
base_receipe
</th>
<th>
base_receipe
</th>
<th>
add_on_qty
</th>
<th>
1
</th>
<th>
add_on_name
</th>
<th>
mini marshmallows,
<br>
strawberry
</th>
</tr>
</tr>
<!-- TABLE ROW WITHOUT INFO -->
<!-- TABLE ROW WITHOUT INFO -->
<tr>
<tr>
<th>
customer_no
</th>
<th>
</th>
<th>
customer_name
</th>
<th>
</th>
<th>
date
</th>
<th>
</th>
<th>
size
</th>
<th>
</th>
<th>
base_receipe
</th>
<th>
</th>
<th>
add_on_qty
</th>
<th>
</th>
<th>
add_on_name
</th>
<th>
</th>
</tr>
</tr>
</table>
</table>
...
...
blizzardblast/templates/receipt.html
View file @
77097ef0
...
@@ -8,8 +8,10 @@
...
@@ -8,8 +8,10 @@
{% block content %}
{% block content %}
<h1
class=
'view-title'
>
Order
</h1>
<div
class=
"title-area"
>
<!-- SEARCH BOX -->
<h1
class=
'view-title'
>
Order
</h1>
<h3
class=
'view-subtitle'
>
Receipt
</h3>
</div>
<!-- SEARCH BOX -->
<div
id=
"filter-area"
>
<div
id=
"filter-area"
>
<button
class=
"filter-button"
><a
href=
"{% url 'order' %}"
>
Order Slip
</a></button>
<button
class=
"filter-button"
><a
href=
"{% url 'order' %}"
>
Order Slip
</a></button>
<button
class=
"filter-button"
><a
href=
"{% url 'receipt' %}"
>
Receipt
</a></button>
<button
class=
"filter-button"
><a
href=
"{% url 'receipt' %}"
>
Receipt
</a></button>
...
@@ -29,6 +31,7 @@
...
@@ -29,6 +31,7 @@
<tr>
<tr>
<th>
customer_name
</th>
<th>
customer_name
</th>
<th>
transaction_no
</th>
<th>
transaction_no
</th>
<th>
date
</th>
<th>
customer_order
</th>
<th>
customer_order
</th>
<th>
price_per_item
</th>
<th>
price_per_item
</th>
<th>
price_per_order
</th>
<th>
price_per_order
</th>
...
@@ -38,24 +41,34 @@
...
@@ -38,24 +41,34 @@
<!-- TABLE ROW WITH INFO -->
<!-- TABLE ROW WITH INFO -->
<tr>
<tr>
<th>
customer_name
</th>
<th>
Anna Doe
</th>
<th>
transaction_no
</th>
<th>
1409130034
</th>
<th>
customer_order
</th>
<th>
11/13/15
</th>
<th>
price_per_item
</th>
<th>
<th>
price_per_order
</th>
12 oz Cookies
&
Cream
<br>
<th>
employee_name
</th>
+ 1 mini mallows
<br>
+ 1 strawberry
</th>
<th>
90.00
<br>
10.00
<br>
20.00
<br>
</th>
<th>
₱ 120.00
</th>
<th>
April
</th>
<th>
total_sales
</th>
<th>
total_sales
</th>
</tr>
</tr>
<!-- TABLE ROW WITHOUT INFO -->
<!-- TABLE ROW WITHOUT INFO -->
<tr>
<tr>
<th>
customer_name
</th>
<th>
</th>
<th>
transaction_no
</th>
<th>
</th>
<th>
customer_order
</th>
<th>
</th>
<th>
price_per_item
</th>
<th>
</th>
<th>
price_per_order
</th>
<th>
</th>
<th>
employee_name
</th>
<th>
</th>
<th>
total_sales
</th>
<th>
</th>
<th>
</th>
</tr>
</tr>
</table>
</table>
...
...
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