diff --git a/scipost_django/production/templates/production/_productionstream_details_summary_contents.html b/scipost_django/production/templates/production/_productionstream_details_summary_contents.html
index fba9f372ad5726b9775fd38bd7c8cf799a74596e..2d1c64f52dcc14fb0037ae715509d95d379f28c7 100644
--- a/scipost_django/production/templates/production/_productionstream_details_summary_contents.html
+++ b/scipost_django/production/templates/production/_productionstream_details_summary_contents.html
@@ -1,19 +1,29 @@
-<div class="row mb-0">
-    <div class="col mb-2">
-        <table class="mb-0">
-            <tbody>
-                <tr>
-                    <td>
-                        <strong class="text-primary">{{ productionstream.submission.title }}</strong>
-                    </td>
-                </tr>
-                <tr class="mt-1">
-                    <td>
-                        <strong><em>by {{ productionstream.submission.author_list }}</em></strong>
-                    </td>
-                </tr>
-            </tbody>
-        </table>
+<div class="row">
+    <div class="col">
+        <div class="row mb-0 align-items-center">
+            <div class="col-auto">
+                <input type="checkbox"
+                       class="form-check-input checkbox-lg"
+                       name="productionstream-{{ productionstream.id }}-checkbox"
+                       id="productionstream-{{ productionstream.id }}-checkbox">
+            </div>
+            <div class="col">
+                <table class="mb-0">
+                    <tbody>
+                        <tr>
+                            <td>
+                                <strong class="text-primary">{{ productionstream.submission.title }}</strong>
+                            </td>
+                        </tr>
+                        <tr class="mt-1">
+                            <td>
+                                <strong><em>by {{ productionstream.submission.author_list }}</em></strong>
+                            </td>
+                        </tr>
+                    </tbody>
+                </table>
+            </div>
+        </div>
  
         <div class="row mt-2 mb-0">
             <div class="col">
diff --git a/scipost_django/scipost/static/scipost/assets/config/preconfig.scss b/scipost_django/scipost/static/scipost/assets/config/preconfig.scss
index 4d17958b36723928fdbc053315cad40ba3dee318..56124499ce0e1c769f7be5d798e68acf7c3e6052 100644
--- a/scipost_django/scipost/static/scipost/assets/config/preconfig.scss
+++ b/scipost_django/scipost/static/scipost/assets/config/preconfig.scss
@@ -215,4 +215,9 @@ $theme-colors-rgb: map-loop($theme-colors, to-rgb, "$value");
 // Hide div
 .d-none-empty:empty {
   display: none;
+}
+
+.checkbox-lg {
+  width: 1.5em !important;
+  height: 1.5em !important;
 }
\ No newline at end of file