rack_import.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {% extends 'utilities/obj_import.html' %}
  2. {% block title %}Rack Import{% endblock %}
  3. {% block instructions %}
  4. <h4>CSV Format</h4>
  5. <table class="table">
  6. <thead>
  7. <tr>
  8. <th>Field</th>
  9. <th>Description</th>
  10. <th>Example</th>
  11. </tr>
  12. </thead>
  13. <tbody>
  14. <tr>
  15. <td>Site</td>
  16. <td>Name of the assigned site</td>
  17. <td>DC-4</td>
  18. </tr>
  19. <tr>
  20. <td>Group</td>
  21. <td>Rack group name (optional)</td>
  22. <td>Cage 1400</td>
  23. </tr>
  24. <tr>
  25. <td>Name</td>
  26. <td>Internal rack name</td>
  27. <td>R101</td>
  28. </tr>
  29. <tr>
  30. <td>Facility ID</td>
  31. <td>Rack ID assigned by the facility (optional)</td>
  32. <td>J12.100</td>
  33. </tr>
  34. <tr>
  35. <td>Tenant</td>
  36. <td>Name of tenant (optional)</td>
  37. <td>Pied Piper</td>
  38. </tr>
  39. <tr>
  40. <td>Role</td>
  41. <td>Functional role (optional)</td>
  42. <td>Compute</td>
  43. </tr>
  44. <tr>
  45. <td>Type</td>
  46. <td>Rack type (optional)</td>
  47. <td>4-post cabinet</td>
  48. </tr>
  49. <tr>
  50. <td>Width</td>
  51. <td>Rail-to-rail width (19 or 23 inches)</td>
  52. <td>19</td>
  53. </tr>
  54. <tr>
  55. <td>Height</td>
  56. <td>Height in rack units</td>
  57. <td>42</td>
  58. </tr>
  59. <tr>
  60. <td>Descending units</td>
  61. <td>Units are numbered top-to-bottom</td>
  62. <td>False</td>
  63. </tr>
  64. </tbody>
  65. </table>
  66. <h4>Example</h4>
  67. <pre>DC-4,Cage 1400,R101,J12.100,Pied Piper,Compute,4-post cabinet,19,42,False</pre>
  68. {% endblock %}