Skip to content

Commit

Permalink
Fixed css for response row date
Browse files Browse the repository at this point in the history
  • Loading branch information
johnyu95 committed Feb 23, 2018
1 parent 6fdb609 commit 2dd6775
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/templates/request/responses/row.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<div class="row response-row" data-toggle="modal" data-target="#response-modal-{{ response.id }}"
data-backdrop="static" data-keyboard="false">
<div class="col-md-1 response-row-num">{{ row_num }}</div>
<div class="col-md-{% if current_user.is_agency %}5{% else %}2{% endif %}
<div class="col-md-{% if current_user.is_agency %}6{% else %}2{% endif %}
{% if response.type == response_type.INSTRUCTIONS %}offline-instructions-row{% endif %}
{% if response.dtype == determination_type.REOPENING %}re-opened-row{% endif %}">
<strong>{{ response | format_response_type }}</strong>
</div>

{% if current_user.is_agency %}
<div class="col-md-6 text-right">
<div class="col-md-5 text-right">
{{ moment(response.date_modified).format('dddd, MM/DD/YYYY [at] h:mm A') }}
</div>
<div class="row">
Expand Down

0 comments on commit 2dd6775

Please sign in to comment.