20 lines
No EOL
599 B
HTML
20 lines
No EOL
599 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Restaurar Feeds{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Restaurar Feeds</h1>
|
|
|
|
<div class="card">
|
|
<form method="post" enctype="multipart/form-data" action="{{ url_for('backup.restore_feeds') }}">
|
|
<label>Archivo CSV</label>
|
|
<input type="file" name="file" required>
|
|
|
|
<button class="btn" style="margin-top:15px;width:100%;">Restaurar</button>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<h3>Formato esperado</h3>
|
|
<code>id,nombre,descripcion,url,categoria_id,categoria,pais_id,pais,idioma,activo,fallos</code>
|
|
</div>
|
|
{% endblock %} |