Initial clean commit
This commit is contained in:
commit
6784d81c2c
141 changed files with 25219 additions and 0 deletions
20
templates/restore_feeds.html
Normal file
20
templates/restore_feeds.html
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{% 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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue