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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. {% extends 'base.html' %}
  2. {% block content %}
  3. <h1>{% block title %} Edit "{{ resource['name'] }}" {% endblock %}</h1>
  4. <form method="post">
  5. <div class="mb-3 mt-3">
  6. <label for="name">Name</label>
  7. <input type="text" name="name" placeholder="Name"
  8. class="form-control"
  9. value="{{ request.form['name'] or resource['name'] }}">
  10. </input>
  11. </div>
  12. <div class="mb-3 mt-3">
  13. <label for="description">Description</label>
  14. <textarea name="description" placeholder="Description"
  15. class="form-control">{{ request.form['description'] or resource['description'] }}</textarea>
  16. </div>
  17. {% if resource['type'] == 'tool' %}
  18. <div class="mb-3 mt-3">
  19. <label for="developer">Developer</label>
  20. <input type="text" name="developer" placeholder="Developer"
  21. class="form-control"
  22. value="{{ request.form['developer'] or resource['developer'] }}">
  23. </input>
  24. </div>
  25. <div class="mb-3 mt-3">
  26. <label for="developerUrl">Developer URL</label>
  27. <input type="text" name="developerUrl" placeholder="Developer URL"
  28. class="form-control"
  29. value="{{ request.form['developerUrl'] or resource['developerUrl'] }}">
  30. </input>
  31. </div>
  32. <div class="mb-3 mt-3">
  33. <label for="projectUrl">Project URL</label>
  34. <input type="text" name="projectUrl" placeholder="Project URL"
  35. class="form-control"
  36. value="{{ request.form['projectUrl'] or resource['projectUrl'] }}">
  37. </input>
  38. </div>
  39. <div class="mb-3 mt-3">
  40. <label for="repositoryUrl">Repository URL</label>
  41. <input type="text" name="repositoryUrl" placeholder="Repository URL"
  42. class="form-control"
  43. value="{{ request.form['repositoryUrl'] or resource['repositoryUrl'] }}">
  44. </input>
  45. </div>
  46. <div class="mb-3 mt-3">
  47. <label for="license">Software license</label>
  48. <input type="text" name="license" placeholder="Software license"
  49. class="form-control"
  50. value="{{ request.form['license'] or resource['license'] }}">
  51. </input>
  52. </div>
  53. <div class="mb-3 mt-3">
  54. <label for="scriptingLanguage">Software language(s)</label>
  55. <input type="text" name="scriptingLanguage" placeholder="Software language(s)"
  56. class="form-control"
  57. value="{{ request.form['scriptingLanguage'] or resource['scriptingLanguage'] }}">
  58. </input>
  59. </div>
  60. <div class="mb-3 mt-3">
  61. <label for="expertiseToUse">Expertise required to use</label>
  62. <input type="text" name="expertiseToUse" placeholder="Expertise required to use"
  63. class="form-control"
  64. value="{{ request.form['expertiseToUse'] or resource['expertiseToUse'] }}">
  65. </input>
  66. </div>
  67. <div class="mb-3 mt-3">
  68. <label for="expertiseToHost">Expertise required to host</label>
  69. <input type="text" name="expertiseToHost" placeholder="Expertise required to host"
  70. class="form-control"
  71. value="{{ request.form['expertiseToHost'] or resource['expertiseToHost'] }}">
  72. </input>
  73. </div>
  74. <div class="mb-3 mt-3">
  75. <label for="dependencies">Technical dependencies</label>
  76. <input type="text" name="dependencies" placeholder="Technical dependencies"
  77. class="form-control"
  78. value="{{ request.form['dependencies'] or resource['dependencies'] }}">
  79. </input>
  80. </div>
  81. <div class="mb-3 mt-3">
  82. <label for="ingestFormats">Import / ingest formats</label>
  83. <input type="text" name="ingestFormats" placeholder="Import / ingest formats"
  84. class="form-control"
  85. value="{{ request.form['ingestFormats'] or resource['ingestFormats'] }}">
  86. </input>
  87. </div>
  88. <div class="mb-3 mt-3">
  89. <label for="outputFormats">Output formats</label>
  90. <input type="text" name="outputFormats" placeholder="Output formats"
  91. class="form-control"
  92. value="{{ request.form['outputFormats'] or resource['outputFormats'] }}">
  93. </input>
  94. </div>
  95. <div class="mb-3 mt-3">
  96. <label for="status">Platform status</label>
  97. <input type="text" name="status" placeholder="Platform status"
  98. class="form-control"
  99. value="{{ request.form['status'] or resource['status'] }}">
  100. </input>
  101. </div>
  102. <div class="mb-3 mt-3">
  103. <label for="linked_practice_id">Linked resources</label>
  104. </div>
  105. <div class="mb-3 mt-3">
  106. <select name="linked_resources" id="linked_resources" aria-label="Linked resources" class="selectpicker" data-live-search="true" multiple>
  107. {% for resource_dropdown in resource_dropdown %}
  108. {% if resource_dropdown['type'] != 'tool' %}
  109. {% if links and resource_dropdown in links %}
  110. <option value="{{ resource_dropdown['id'] }}" selected>{{ resource_dropdown['name'] }}</option>
  111. {% else %}
  112. <option value="{{ resource_dropdown['id'] }}">{{ resource_dropdown['name'] }}</option>
  113. {% endif %}
  114. {% endif %}
  115. {% endfor %}
  116. </select>
  117. </div>
  118. {% elif resource['type'] == 'practice' %}
  119. <div class="mb-3 mt-3">
  120. <label for="linked_practice_id">Linked resources</label>
  121. </div>
  122. <div class="mb-3 mt-3">
  123. <select name="linked_resources" id="linked_resources" aria-label="Linked resources" class="selectpicker" data-live-search="true" multiple>
  124. {% for resource_dropdown in resource_dropdown %}
  125. {% if resource_dropdown['type'] != 'practice' %}
  126. {% if links and resource_dropdown in links %}
  127. <option value="{{ resource_dropdown['id'] }}" selected>{{ resource_dropdown['name'] }}</option>
  128. {% else %}
  129. <option value="{{ resource_dropdown['id'] }}">{{ resource_dropdown['name'] }}</option>
  130. {% endif %}
  131. {% endif %}
  132. {% endfor %}
  133. </select>
  134. </div>
  135. {% endif %}
  136. {% if links %}
  137. <div class="mb-3 mt-3">
  138. <label for="linked_practice_id">Remove linked resources</label>
  139. </div>
  140. <div class="mb-3 mt-3">
  141. <select name="remove_linked_resources" id="remove_linked_resources" aria-label="Remove linked resources" class="selectpicker" data-live-search="true" multiple>
  142. {% for link in links %}
  143. <option value="{{ link['id'] }}">{{ link['name'] }}</option>
  144. {% endfor %}
  145. </select>
  146. </div>
  147. {% endif %}
  148. <div class="mb-3 mt-3">
  149. <button type="submit" class="btn btn-primary">Submit</button>
  150. </div>
  151. </form>
  152. <hr>
  153. {% if resource['type'] == 'tool' %}
  154. <form action="{{ url_for('tool.delete_tool', tool_id=resource['id']) }}" method="POST">
  155. <input type="submit" value="Delete"
  156. class="btn btn-danger btn-sm"
  157. onclick="return confirm('Are you sure you want to delete this tool?')">
  158. </form>
  159. {% endif %}
  160. {% if resource['type'] == 'practice' %}
  161. <form action="{{ url_for('practice.delete_practice', practice_id=resource['id']) }}" method="POST">
  162. <input type="submit" value="Delete"
  163. class="btn btn-danger btn-sm"
  164. onclick="return confirm('Are you sure you want to delete this practice?')">
  165. </form>
  166. {% endif %}
  167. {% if resource['type'] == 'publisher' %}
  168. <form action="{{ url_for('publisher.delete_publisher', publisher_id=resource['id']) }}" method="POST">
  169. <input type="submit" value="Delete"
  170. class="btn btn-danger btn-sm"
  171. onclick="return confirm('Are you sure you want to delete this publisher?')">
  172. </form>
  173. {% endif %}
  174. {% endblock %}