diff --git a/scipost_django/production/templates/production/_hx_productionstream_summary_assignees_status.html b/scipost_django/production/templates/production/_hx_productionstream_summary_assignees_status.html new file mode 100644 index 0000000000000000000000000000000000000000..ab5d5849e9b036f92d077095ad76a4c663d399ef --- /dev/null +++ b/scipost_django/production/templates/production/_hx_productionstream_summary_assignees_status.html @@ -0,0 +1,38 @@ +<table class="table"> + <tr> + <td> + <small class="text-muted">Latest activity</small> + </td> + <td> + {{ productionstream.latest_activity|timesince }} ago + <br> + <span class="text-muted">(opened {{ productionstream.opened|timesince }} ago)</span> + </td> + </tr> + <tr> + <td> + <small class="text-muted">Supervisor</small> + </td> + <td> + {% if productionstream.supervisor %} + <span class="text-success">{% include 'bi/check-circle-fill.html' %}</span> + {{ productionstream.supervisor }} + {% else %} + <span class="text-danger">{% include 'bi/x-circle-fill.html' %}</span> + {% endif %} + </td> + </tr> + <tr> + <td> + <small class="text-muted">Production officer</small> + </td> + <td> + {% if productionstream.officer %} + <span class="text-success">{% include 'bi/check-circle-fill.html' %}</span> + {{ productionstream.officer }} + {% else %} + <span class="text-danger">{% include 'bi/x-circle-fill.html' %}</span> + {% endif %} + </td> + </tr> +</table> 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 3071e39f4b1dda8936863a69d3c3615f2f03945b..28f77eae856c945dc87b6ca3ef979c3c0436604c 100644 --- a/scipost_django/production/templates/production/_productionstream_details_summary_contents.html +++ b/scipost_django/production/templates/production/_productionstream_details_summary_contents.html @@ -1,65 +1,54 @@ <div class="row mb-0"> - <div class="col col-md-8"> - <table> - <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 mt-2 mb-0"> - <div class="col"> - <small class="text-muted">To be published in</small><br> - {{ productionstream.submission.editorial_decision.for_journal }} - </div> - <div class="col"> - <small class="text-muted">Acceptance date</small><br> - {{ productionstream.submission.editorial_decision.taken_on|date:'Y-m-d' }} - </div> - <div class="col"> - <small class="text-muted">Stream Status</small> - <br> - <div class="p-2 label label-{% if stream.status == 'initiated' %}outline-danger{% else %}secondary{% endif %}">{{ productionstream.get_status_display }}</div> - {% if productionstream.submission.editorial_decision.status == productionstream.submission.editorial_decision.AWAITING_PUBOFFER_ACCEPTANCE %}<br><strong class="text-danger">Wait! author<br>acceptance of puboffer<br>required!</strong>{% endif %} - </div> - </div> + <div class="col col-md-8"> + <table> + <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 mt-2 mb-0"> + <div class="col"> + <small class="text-muted">To be published in</small> + <br> + {{ productionstream.submission.editorial_decision.for_journal }} + </div> + <div class="col"> + <small class="text-muted">Acceptance date</small> + <br> + {{ productionstream.submission.editorial_decision.taken_on|date:'Y-m-d' }} + </div> + <div class="col"> + <small class="text-muted">Stream Status</small> + <br> + <div class="p-2 label label-{% if stream.status == 'initiated' %}outline-danger{% else %}secondary{% endif %}"> + {{ productionstream.get_status_display }} + </div> + + {% if productionstream.submission.editorial_decision.status == productionstream.submission.editorial_decision.AWAITING_PUBOFFER_ACCEPTANCE %} + <br> + <strong class="text-danger">Wait! author + <br> + acceptance of puboffer + <br> + required!</strong> + {% endif %} + + </div> + </div> - </div> - <div class="col col-md-4 border-start"> - <table class="table"> - <tr> - <td><small class="text-muted">Latest activity</small></td> - <td> - {{ productionstream.latest_activity|timesince }} ago - <br> - <span class="text-muted">(opened {{ productionstream.opened|timesince }} ago)</span> - </td> - </tr> - <tr> - <td><small class="text-muted">Supervisor</small></td> - <td> - {% if productionstream.supervisor %} - <span class="text-success">{% include 'bi/check-circle-fill.html' %}</span> - {{ productionstream.supervisor }} - {% else %} - <span class="text-danger">{% include 'bi/x-circle-fill.html' %}</span> - {% endif %} - </td> - </tr> - <tr> - <td><small class="text-muted">Production officer</small></td> - <td> - {% if productionstream.officer %} - <span class="text-success">{% include 'bi/check-circle-fill.html' %}</span> - {{ productionstream.officer }} - {% else %} - <span class="text-danger">{% include 'bi/x-circle-fill.html' %}</span> - {% endif %} - </td> - </tr> - </table> - </div> + </div> + <div id="productionstream-{{ productionstream.id }}-summary-assignees" + class="col col-md-4 border-start" + hx-get="{% url 'production:render_stream_assignees_status' productionstream.id %}" + hx-trigger="load"></div> </div> diff --git a/scipost_django/production/urls.py b/scipost_django/production/urls.py index 2ce5894c34e2e62441f273a5c8682d208734adbe..1a23cad3e3f9c503b56e07bc4eb09d7bb9772972 100644 --- a/scipost_django/production/urls.py +++ b/scipost_django/production/urls.py @@ -197,6 +197,11 @@ urlpatterns = [ production_views.render_action_buttons, name="render_action_buttons", ), + path( + "render_stream_assignees_status", + production_views.render_stream_assignees_status, + name="render_stream_assignees_status", + ), ] ), ), diff --git a/scipost_django/production/views.py b/scipost_django/production/views.py index 8d4cb0fb8402123bd75581c6c5e71138316ff31d..b96f06fe735cccfc554ae4cc4a048562ac77e5f9 100644 --- a/scipost_django/production/views.py +++ b/scipost_django/production/views.py @@ -1118,3 +1118,17 @@ def render_action_buttons(request, stream_id, key): "new_option": new_option_str, }, ) + + +def render_stream_assignees_status(request, stream_id): + productionstream = get_object_or_404(ProductionStream, pk=stream_id) + + context = { + "productionstream": productionstream, + } + + return render( + request, + "production/_hx_productionstream_summary_assignees_status.html", + context, + )