project_view.html 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {% extends "base.html" %}
  2. {%block head%}
  3. <script src="{{ url_for('static', filename='script/artifacts.js') }}"></script>
  4. {%endblock%}
  5. {%block title%}{{selected_project.info.name}}{%endblock%}
  6. {%block content%}
  7. <div class="content">
  8. <div class="readme">
  9. {%- if readme %}
  10. {{readme|safe}}
  11. {%-else%}
  12. <h1>{{selected_project.info.name}}</h1>
  13. <p>
  14. Here you can find artifacts for project &quot;{{selected_project.info.name}}&quot;
  15. </p>
  16. {%-endif%}
  17. </div>
  18. </div>
  19. <h1 class="is-size-2">Artifacts</h1>
  20. <hr class="content-divider" />
  21. {%-for artifact in artifacts %}
  22. <div class="artifact-item">
  23. <div class="artifact-details">
  24. <div class="artifact-id">
  25. <p class="is-size-5">#{{artifact.id}}</p>
  26. </div>
  27. <div class="artifact-info">
  28. <div class="artifact-info-content" style="align-items: center">
  29. <p>Build date: {{artifact.date}}</p>
  30. <div class="dropdown-button">
  31. <i class="fas fa-chevron-down fa-lg"></i>
  32. </div>
  33. </div>
  34. </div>
  35. </div>
  36. <div class="artifact-contents" style="display: none">
  37. <div class="column content">
  38. <h2>Downloads</h2>
  39. <div>
  40. <table class="table is-hoverable is-striped is-bordered is-narrow">
  41. <thead>
  42. <tr>
  43. <th>Artifact</th>
  44. <th>Description</th>
  45. </tr>
  46. </thead>
  47. <tbody>
  48. {%-for download_item in artifact.artifacts%}
  49. <tr>
  50. <td><a class="button is-link" href="{{ url_for('download_item', project_id=selected_project.id, artifact_id=artifact.id, download_item=download_item.file)}}">{{download_item.file}}</a></td>
  51. <td>{{download_item.description}}</td>
  52. </tr>
  53. {%-endfor%}
  54. </tbody>
  55. </table>
  56. </div>
  57. {%- if artifact.changelog %}
  58. <h2>Changelog</h2>
  59. <p>
  60. {{artifact.changelog|safe}}
  61. </p>
  62. {%- endif %}
  63. </div>
  64. </div>
  65. </div>
  66. {%-endfor%}
  67. {%endblock%}