| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- {% extends "core/base.html" %}
- {% load static %}
- {% load i18n %}
- {% block breadcrumbs %}
- <div class="breadcrumbs">
- <a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
- {% if title %} › {{ title }}{% endif %}
- </div>
- {% endblock %}
- {% block extra_head %}
- <link rel="stylesheet" href="{% static 'add.css' %}" />
- {% endblock %}
- {% block body %}
- <div style="max-width: 1440px; margin: auto; float: none">
- <br/><br/>
- {% if stdout %}
- <h1>Add new URLs to your archive: results</h1>
- <pre id="stdout">
- {{ stdout | safe }}
- <br/><br/>
- </pre>
- <br/>
- <center>
- <a href="/add" id="submit"> Add more URLs ➕</a>
- </center>
- {% else %}
- <div id="in-progress" style="display: none;">
- <center><h3>Adding URLs to index and running archive methods...</h3>
- <br/>
- <div class="loader"></div>
- <br/>
- Check the server log or the <a href="/admin/core/archiveresult/?o=-1">Log</a> page for detailed progress...
- </center>
- </div>
- <form id="add-form" method="POST" class="p-form">{% csrf_token %}
- <h1>Add new URLs to your archive</h1>
- <br/>
- {{ form.as_p }}
- <center>
- <button role="submit" id="submit"> Add URLs and archive ➕</button>
- </center>
- </form>
- <br/><br/><br/>
- <center id="delay-warning" style="display: none">
- <small>(you will be redirected to your <a href="/">Snapshot list</a> momentarily, its safe to close this page at any time)</small>
- </center>
- {% if absolute_add_path %}
- <!-- <center id="bookmarklet">
- <p>Bookmark this link to quickly add to your archive:
- <a href="javascript:void(window.open('{{ absolute_add_path }}?url='+encodeURIComponent(document.location.href)));">Add to ArchiveBox</a></p>
- </center> -->
- {% endif %}
- <script>
- document.getElementById('add-form').addEventListener('submit', function(event) {
- document.getElementById('in-progress').style.display = 'block'
- document.getElementById('add-form').style.display = 'none'
- document.getElementById('delay-warning').style.display = 'block'
- setTimeout(function() {
- window.location = '/'
- }, 2000)
- return true
- })
- </script>
- {% endif %}
- </div>
- {% endblock %}
- {% block footer %}{% endblock %}
- {% block sidebar %}{% endblock %}
|