Validate URLs before adding
This commit is contained in:
parent
6f544db209
commit
c41780fca0
12 changed files with 386 additions and 16 deletions
|
|
@ -6,7 +6,13 @@
|
|||
{% for feed in feeds %}
|
||||
<div class="feed">
|
||||
<h2>
|
||||
<a href="{{ feed.url }}">{{ feed.title }}</a>
|
||||
<a href="{{ feed.url }}">
|
||||
{% if feed.title %}
|
||||
{{ feed.title }}
|
||||
{% else %}
|
||||
{{ feed.url }}
|
||||
{% endif %}
|
||||
</a>
|
||||
</h2>
|
||||
<p>{{ feed.description }}</p>
|
||||
<p>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue