-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1800 from MTG/issue1290
bookmark category download implementation
- Loading branch information
Showing
11 changed files
with
119 additions
and
61 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{% load absurl %}{{type}} downloaded from Freesound | ||
---------------------------------------- | ||
{# NOTE: an object can either be a pack of sounds or a bookmark category#} | ||
"{{ object.name }}" | ||
|
||
This {{ type }} of sounds contains sounds by the following user{{ users|pluralize }}: | ||
{% for user in users %} - {{user.username}} ( {% absurl 'account' user.username %} ){% endfor %} | ||
|
||
{% if type == "Pack" %}You can find this pack online at: {% absurl 'pack' object.user.username object.id %}{% endif %} | ||
|
||
{%if object.description %} | ||
{{ type }} description | ||
---------------- | ||
|
||
{{ object.description }} | ||
|
||
{% endif %} | ||
Licenses in this {{type}} (see below for individual sound licenses) | ||
--------------------------------------------------------------- | ||
|
||
{% for license in licenses %}{{license}}: {{license.deed_url}} | ||
{% endfor %} | ||
|
||
Sounds in this {{type}} | ||
------------------- | ||
|
||
{% for sound in sound_list %} * {{sound.base_filename_slug}}.{{sound.type}} | ||
* url: {% absurl 'short-sound-link' sound.id %} | ||
* license: {{sound.license}} | ||
{% endfor %} | ||
|
This file was deleted.
Oops, something went wrong.
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