diff --git a/app/modules/dispatch/templates/dispatch/batches.html b/app/modules/dispatch/templates/dispatch/batches.html
index c3c8c13..5f606fc 100644
--- a/app/modules/dispatch/templates/dispatch/batches.html
+++ b/app/modules/dispatch/templates/dispatch/batches.html
@@ -25,7 +25,13 @@
{% for b in batches %}
| {{ b.dispatch_date }} |
- {{ b.platform }} |
+
+ {% set pf = (b.platform or '')|lower %}
+ {% if pf in ['tiktok', 'shopee'] %}
+
+ {% else %}{{ b.platform }}{% endif %}
+ |
{{ b.batch_name or '(이름없음)' }} |
{{ b.parcel_count }} |
diff --git a/app/static/dispatch/courier/shopee.png b/app/static/dispatch/courier/shopee.png
new file mode 100644
index 0000000..9df15a3
Binary files /dev/null and b/app/static/dispatch/courier/shopee.png differ
diff --git a/app/static/dispatch/courier/tiktok.png b/app/static/dispatch/courier/tiktok.png
new file mode 100644
index 0000000..e76d550
Binary files /dev/null and b/app/static/dispatch/courier/tiktok.png differ