Skip to content

Commit

Permalink
fix: table alignment issue in ingestion email
Browse files Browse the repository at this point in the history
  • Loading branch information
AfaqShuaib09 committed Jun 26, 2024
1 parent ab20b15 commit 9d4899c
Showing 1 changed file with 25 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,29 +46,31 @@
{% if created_products_count > 0 %}
<div>
<h3>New Products</h3>
<ul>
{% if product_type != "DEGREES" %}
<table border="2" style="padding: 5px;">
<tr>
<th style="padding: 5px;">
Course UUID
</th>
<th style="padding: 5px;">
URL Slug
</th>
<th style="padding: 5px;">
External Course Marketing Type
</th>
<th style="padding: 5px;">
Variant ID
</th>
<th style="padding: 5px;">
Restriction Type
</th>
<th style="padding: 5px;">
Rerun
</th>
</tr>
{% if product_type != "DEGREES" %}
<table border="2">
<tr>
<th style="padding: 5px;">
Course UUID
</th>
<th style="padding: 5px;">
URL Slug
</th>
<th style="padding: 5px;">
External Course Marketing Type
</th>
<th style="padding: 5px;">
Variant ID
</th>
<th style="padding: 5px;">
Restriction Type
</th>
<th style="padding: 5px;">
Rerun
</th>
</tr>
{% endif %}
{% if product_type == "DEGREES" %}
<ul>
{% endif %}
{% for new_product in created_products %}
{% if product_type != "DEGREES" %}
Expand Down

0 comments on commit 9d4899c

Please sign in to comment.