-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Florian Scherf <[email protected]>
- Loading branch information
Showing
7 changed files
with
28 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ning_filer/templates/djangocms_versioning_filer/admin/action_buttons/manage_versions.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{% load i18n %} | ||
|
||
<a href="{{ file.grouper.get_absolute_url }}" | ||
title="{% blocktrans %}Manage versions{% endblocktrans %}" class="action-button"><span class="fa fa-list-ol"></span></a> | ||
title="{% blocktrans %}Manage versions{% endblocktrans %}" class="action-button"><span class="cms-icon cms-icon-manage-versions"></span></a> |
6 changes: 4 additions & 2 deletions
6
..._versioning_filer/templates/djangocms_versioning_filer/admin/directory_table_actions.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
{% load i18n djangocms_versioning_filer_tags %} | ||
|
||
{% spaceless %} | ||
<a href="{{ file.canonical_url }}" | ||
title="{% blocktrans %}Link{% endblocktrans %}" class="action-button" target="_blank"><span class="fa fa-link"></span></a> | ||
title="{% blocktrans %}Link{% endblocktrans %}" class="action-button" target="_blank"><span class="fa fa-link filer-icon filer-icon-link"></span></a> | ||
<a href="{{ file.url }}" target="_blank" | ||
title="{% blocktrans %}Download{% endblocktrans %}" class="action-button"><span class="fa fa-download"></span></a> | ||
title="{% blocktrans %}Download{% endblocktrans %}" class="action-button"><span class="fa fa-download filer-icon filer-icon-download"></a> | ||
|
||
{% get_versioning_filer_admin_actions as admin_actions %} | ||
{% for template_name in admin_actions %} | ||
{% include template_name %} | ||
{% endfor %} | ||
{% endspaceless %} |