Skip to content

Commit

Permalink
Merge pull request #761 from divio/bugfix/missing-popup-parameter
Browse files Browse the repository at this point in the history
adds missing popup parameter on folder edit and delete links
  • Loading branch information
lory87 committed Mar 4, 2016
2 parents 369afb2 + 813e792 commit a363d1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions filer/templates/admin/filer/folder/directory_table.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@
</td>
<td class="column-action">
{% if subfolder.file_type == "Folder" %}
<a href="{% url 'admin:filer_folder_change' subfolder.id %}" title="{% trans 'Change folder details' %}" class="icon fa fa-pencil"></a>
<a href="{{ subfolder.get_admin_delete_url }}" class="icon fa fa-trash-o" title="{% trans 'Remove folder' %}"></a>
<a href="{% url 'admin:filer_folder_change' subfolder.id %}{% if is_popup %}?_popup=1{% if select_folder %}&amp;select_folder=1{% endif %}{% endif %}" title="{% trans 'Change folder details' %}" class="icon fa fa-pencil"></a>
<a href="{{ subfolder.get_admin_delete_url }}{% if is_popup %}?_popup=1{% if select_folder %}&amp;select_folder=1{% endif %}{% endif %}" class="icon fa fa-trash-o" title="{% trans 'Remove folder' %}"></a>
{% endif %}
</td>
</tr>
Expand Down

0 comments on commit a363d1d

Please sign in to comment.