AItool commited on
Commit
a767630
·
verified ·
1 Parent(s): 102f9a9

Update testnavbar.py

Browse files
Files changed (1) hide show
  1. testnavbar.py +7 -7
testnavbar.py CHANGED
@@ -89,13 +89,13 @@ def index():
89
  return Titled("Example Store Front!",
90
  Grid(*[ProductCard(p) for p in products], cols_lg=3))
91
 
92
- example_product_description = Div(
93
- P("This is a sample detailed description of the {product_name}. "
94
- "You can see when clicking on the card from the gallery you can:"),
95
- Ul(
96
- Li("Have a detailed description of the product on the page"),
97
- Li("Have an order form to fill out and submit"),
98
- )
99
  )
100
 
101
  @rt
 
89
  return Titled("Example Store Front!",
90
  Grid(*[ProductCard(p) for p in products], cols_lg=3))
91
 
92
+ example_product_description = Div(
93
+ P("This is a sample detailed description of the {product_name}. "
94
+ "You can see when clicking on the card from the gallery you can:"),
95
+ Ul(
96
+ Li("Have a detailed description of the product on the page"),
97
+ Li("Have an order form to fill out and submit"),
98
+ )
99
  )
100
 
101
  @rt