You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.5 KiB

  1. {% extends "admin/admin_base.html" %}
  2. {% load static %}
  3. {% block content-area %}
  4. <div class="columns">
  5. <div class="column is-12">
  6. <div class="card">
  7. <header class="card-header">
  8. <p class="card-header-title">
  9. Export text items
  10. </p>
  11. <a href="#" class="card-header-icon" aria-label="more options">
  12. <span class="icon">
  13. <i class="fas fa-angle-down" aria-hidden="true"></i>
  14. </span>
  15. </a>
  16. </header>
  17. <div class="card-content">
  18. <p>
  19. <b>There are two data format you can download, the CSV and JSON.</b>
  20. </p>
  21. <p>
  22. If you import as a JSON with line breaks and download it as CSV, the line breaks will render on the result.
  23. We recommend you download it as JSON file.
  24. </p>
  25. <form action="{% url 'download_file' view.kwargs.project_id %}" method="get">
  26. <div class="section">
  27. <ul>
  28. <li>
  29. <a class="control">
  30. <button type="submit" class="button is-primary button-margin " name="format" value="csv">Download CSV File</button>
  31. </a>
  32. </li>
  33. <li>
  34. <a class="control">
  35. <button type="submit" class="button is-primary button-margin " name="format" value="json">Download JSON File</button>
  36. </a>
  37. </li>
  38. </ul>
  39. </div>
  40. </form>
  41. </div>
  42. </div>
  43. </div>
  44. </div>
  45. {% endblock %}