| Date: |
{{ entry.date }} |
| Artist: |
|
| Favorite: |
|
{% if entry.reddit_created_utc is not none %}
| Upvotes: |
{{ entry.reddit_upvotes or "N/A" }}
|
| Flair: |
{{ entry.reddit_flair or "N/A" }}
|
{% endif %}
| Local filename: |
{{ (audio_path.subpath + '/' + entry.filename) if entry.filename else 'Missing!' }} |
{% if entry.reddit_created_utc is not none %}
| Selftext: |
{% if entry.reddit_selftext %}
{% for ln in entry.reddit_selftext.strip().splitlines() %}
{{ ln }}
{% endfor %}
{% else %}
Empty or not in DB!
{% endif %}
|
{% endif %}
| Description: |
{% if entry.description %}
{% for ln in entry.description.splitlines() %}
{{ ln }}
{% endfor %}
{% else %}
Missing!
{% endif %}
|
| Source: |
{% if entry.fcol_url %}
{% endif %}
|
| Embed: |
|
| Actions: |
{# set favIntbool to opposite of what it is 0 or 1 with 1-val #}
{# need to account for entry.favorite being None #}
|