Add podgrab featureset
This commit is contained in:
parent
095bf52a2f
commit
233dd5b5c0
33 changed files with 2315 additions and 125 deletions
|
@ -20,6 +20,29 @@
|
|||
</form>
|
||||
</div>
|
||||
|
||||
<!-- Add by RSS URL Form -->
|
||||
<div class="form-container mt-4">
|
||||
<h3>Add by RSS Feed URL</h3>
|
||||
<form action="{{ url_for('podcasts.add_by_url') }}" method="post">
|
||||
<div class="form-group">
|
||||
<label for="feed_url">Podcast RSS Feed URL:</label>
|
||||
<input type="url" id="feed_url" name="feed_url"
|
||||
placeholder="https://example.com/podcast/feed.xml" required>
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">Add Podcast</button>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<!-- OPML Import/Export -->
|
||||
<div class="form-container mt-4">
|
||||
<h3>Import/Export Podcasts</h3>
|
||||
<p>Import podcasts from an OPML file or export your current podcasts to an OPML file.</p>
|
||||
<div class="btn-group">
|
||||
<a href="{{ url_for('podcasts.import_opml') }}" class="btn btn-primary">Import OPML</a>
|
||||
<a href="{{ url_for('podcasts.export_opml') }}" class="btn btn-secondary">Export OPML</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Search Results -->
|
||||
{% if results %}
|
||||
<div class="content-area">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue