Changeset - 293350658a70
[Not reviewed]
0 3 0
Ben Sturmfels (bsturmfels) - 7 months ago 2023-10-05 09:38:35
ben@sturm.com.au
Fix broken template tag
3 files changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
www/podjango/templates/podjango/base_podcast.html
Show inline comments
...
 
@@ -16,11 +16,11 @@
 
<ul>
 
{% for tag in all_tags %}
 
<li><a href="{{ tag.get_absolute_url }}">{{ tag.label }}</a></li>
 
{% endfor %}
 
</ul>
 

	
 
<p><a href="{% url 'podjango:cast' }">All oggcasts&hellip;</a></p>
 
<p><a href="{% url 'podjango:cast' %}">All oggcasts&hellip;</a></p>
 
<!-- Query is not working right now! -->
 
<!-- <p><a href="/podcast/query/">Query...</a></p> -->
 

	
 
{% endblock %}
www/podjango/templates/podjango/cast/cast_detail.html
Show inline comments
...
 
@@ -49,9 +49,9 @@ to <a href="mailto:oggcast@faif.us">&lt;oggcast@faif.us&gt;</a>.
 
You can keep in touch with <a href="http://faif.us">Free as in Freedom</a>
 
on our IRC channel, #faif on irc.freenode.net, and
 
by <a href="http://identi.ca/faif">following @faif on identi.ca</a>.</p>
 

	
 
{% if object.tags.all %}<p class="blog-tags">Tags: {% for tag in object.tags.all %}<a href="{{ tag.get_absolute_url }}">{{ tag.label }}</a>{% if not forloop.last %}, {% endif %}{% endfor %}</p>{% endif %}
 

	
 
<p><span class="continued"><a href="{% url 'podjango:cast' }">Other FaiF oggcasts&hellip;</a></span></p>
 
<p><span class="continued"><a href="{% url 'podjango:cast' %}">Other FaiF oggcasts&hellip;</a></span></p>
 

	
 
{% endblock %}
www/podjango/templates/podjango/frontpage.html
Show inline comments
...
 
@@ -38,13 +38,13 @@ Bradley and Karen to discuss various topics regarding FLOSS.</p>
 
<a href="{% url 'podjango:feed-ogg' %}"
 
       class="feedlink"><img src="/img/cast/rss-audioogg.png"
 
                             alt="[Ogg/Vorbis Audio RSS]"/></a>
 
<a href="{% url 'podjango:feed-mp3' %}"
 
       class="feedlink"><img src="/img/cast/rss-audiomp3.png"
 
                             alt="[MP3 Audio
 
       RSS]"/></a><a href="{% url 'podjango:cast' }">Recent Free as in Freedom Shows</a></h2>
 
       RSS]"/></a><a href="{% url 'podjango:cast' %}">Recent Free as in Freedom Shows</a></h2>
 

	
 
{% for cc in cast %}
 
<div class="shaded">
 
<a class="feedlink" href="{{ cc.ogg_path }}"><img alt="[Get cast in Ogg/Vorbis
 
                                          format]" src="/img/cast/audio_ogg_button.png"/></a>
 
<a class="feedlink" href="{{ cc.mp3_path }}"><img alt="[Get cast in MP3 format]"
0 comments (0 inline, 0 general)