aggregate_import.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {% extends 'utilities/obj_import.html' %}
  2. {% load render_table from django_tables2 %}
  3. {% load form_helpers %}
  4. {% block title %}Aggregate Import{% endblock %}
  5. {% block instructions %}
  6. <h4>CSV Format</h4>
  7. <table class="table">
  8. <thead>
  9. <tr>
  10. <th>Field</th>
  11. <th>Description</th>
  12. <th>Example</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <tr>
  17. <td>Prefix</td>
  18. <td>IPv4 or IPv6 network</td>
  19. <td>172.16.0.0/12</td>
  20. </tr>
  21. <tr>
  22. <td>RIR</td>
  23. <td>Name of RIR</td>
  24. <td>RFC 1918</td>
  25. </tr>
  26. <tr>
  27. <td>Date Added</td>
  28. <td>Date in YYYY-MM-DD format (optional)</td>
  29. <td>2016-02-23</td>
  30. </tr>
  31. <tr>
  32. <td>Description</td>
  33. <td>Short description (optional)</td>
  34. <td>Private IPv4 space</td>
  35. </tr>
  36. </tbody>
  37. </table>
  38. <h4>Example</h4>
  39. <pre>172.16.0.0/12,RFC 1918,2016-02-23,Private IPv4 space</pre>
  40. {% endblock %}