Initial clean commit

This commit is contained in:
jlimolina 2026-01-13 13:39:51 +01:00
commit 6784d81c2c
141 changed files with 25219 additions and 0 deletions

22
templates/scrape_url.html Normal file
View file

@ -0,0 +1,22 @@
{% extends "base.html" %}
{% block title %}Procesar Fuente URL{% endblock %}
{% block content %}
<h1>Procesar noticias de una Fuente</h1>
<div class="card">
<form method="post" action="{{ url_for('scrape_url') }}">
<label for="source_id">Fuente:</label>
<select id="source_id" name="source_id" required>
<option value="">— Selecciona —</option>
{% for f in fuentes %}
<option value="{{ f.id }}">{{ f.nombre }}</option>
{% endfor %}
</select>
<button class="btn" style="margin-top:15px;">Procesar</button>
</form>
</div>
{% endblock %}