Skip to content

Commit

Permalink
adds the episode id in the table list link
Browse files Browse the repository at this point in the history
  • Loading branch information
fredkingham committed Jan 18, 2018
1 parent 5de4acd commit 790d235
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opal/templates/patient_lists/layouts/table_list_base.html
Expand Up @@ -33,7 +33,7 @@ <h1>
{% for column in columns %}
<td class="table-link-cell">
<a title="[[ row.demographics[0].first_name ]] [[ row.demographics[0].surname ]]"
class="table-link" href="{% block row_link %}[[ '/#/patient/' + row.demographics[0].patient_id ]]{% endblock %}">
class="table-link" href="{% block row_link %}[[ '/#/patient/' + row.demographics[0].patient_id + '/' + row.id ]]{% endblock %}">
<div>
{% if column.model_column %}
<div class="row" ng-repeat="item in row.{{column.name}}">
Expand Down

0 comments on commit 790d235

Please sign in to comment.