Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -81,16 +81,22 @@ with gr.Blocks() as demo:
|
|
81 |
# Bind the function to inputs and outputs using the button
|
82 |
load_button.click(fn=order_csv, inputs=[file_input, supplier_input, order_number_input], outputs=[output_df, output_file])
|
83 |
|
84 |
-
# Updated hyperlink block with
|
85 |
gr.HTML(
|
86 |
"""
|
87 |
<div style="text-align: center; font-size: 16px; margin-top: 20px;">
|
88 |
-
<
|
|
|
89 |
<a href="https://huggingface.co/spaces/leadingbridge/shipping-ec-ship">EC-Ship</a> |
|
90 |
<a href="https://huggingface.co/spaces/leadingbridge/shipping-fedex">Fedex</a> |
|
91 |
-
<a href="https://huggingface.co/spaces/leadingbridge/tss-order">Order Processing</a> |
|
92 |
<a href="https://huggingface.co/spaces/leadingbridge/shipping-UPS">UPS</a>
|
93 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
"""
|
95 |
)
|
96 |
|
|
|
81 |
# Bind the function to inputs and outputs using the button
|
82 |
load_button.click(fn=order_csv, inputs=[file_input, supplier_input, order_number_input], outputs=[output_df, output_file])
|
83 |
|
84 |
+
# Updated hyperlink block with separate sections for Shipping and Administration Tools.
|
85 |
gr.HTML(
|
86 |
"""
|
87 |
<div style="text-align: center; font-size: 16px; margin-top: 20px;">
|
88 |
+
<h3>Shipping Tools</h3>
|
89 |
+
<a href="https://huggingface.co/spaces/leadingbridge/shipping-dhl-e-commerce">DHL</a> |
|
90 |
<a href="https://huggingface.co/spaces/leadingbridge/shipping-ec-ship">EC-Ship</a> |
|
91 |
<a href="https://huggingface.co/spaces/leadingbridge/shipping-fedex">Fedex</a> |
|
|
|
92 |
<a href="https://huggingface.co/spaces/leadingbridge/shipping-UPS">UPS</a>
|
93 |
</div>
|
94 |
+
<div style="text-align: center; font-size: 16px; margin-top: 20px;">
|
95 |
+
<h3>Administration Tools</h3>
|
96 |
+
<a href="https://huggingface.co/spaces/leadingbridge/email-template">Email Template</a> |
|
97 |
+
<a href="https://huggingface.co/spaces/leadingbridge/product-feed">Google Merchant</a> |
|
98 |
+
<a href="https://huggingface.co/spaces/leadingbridge/tss-order">Order Processing</a>
|
99 |
+
</div>
|
100 |
"""
|
101 |
)
|
102 |
|