recipe.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {% extends "basetable.html" %}
  2. {% block pagename %}
  3. <ul class="nav nav-tabs" style="display: inline-block">
  4. <li><a>Layer {{layer_version.layer.name}}&nbsp;:&nbsp;{{layer_version.branch}}&nbsp;:&nbsp;{{layer_version.commit}}&nbsp;:&nbsp;{{layer_version.priority}}</a></li>
  5. </ul>
  6. <h1>Toaster - Recipes for a Layer</h1>
  7. {% endblock %}
  8. {% block pagetable %}
  9. {% load projecttags %}
  10. <tr>
  11. </tr>
  12. <th>Name</th>
  13. <th>Version</th>
  14. <th>Summary</th>
  15. <th>Description</th>
  16. <th>Section</th>
  17. <th>License</th>
  18. <th>License file</th>
  19. <th>Homepage</th>
  20. <th>Bugtracker</th>
  21. <th>Author</th>
  22. <th>File_path</th>
  23. <th style="width: 30em">Recipe Dependency</th>
  24. {% for recipe in recipes %}
  25. <tr class="data">
  26. <td><a name="{{recipe.name}}">{{recipe.name}}</a></td>
  27. <td>{{recipe.version}}</td>
  28. <td>{{recipe.summary}}</td>
  29. <td>{{recipe.description}}</td>
  30. <td>{{recipe.section}}</td>
  31. <td>{{recipe.license}}</td>
  32. <td>{{recipe.licensing_info}}</td>
  33. <td>{{recipe.homepage}}</td>
  34. <td>{{recipe.bugtracker}}</td>
  35. <td>{{recipe.author}}</td>
  36. <td>{{recipe.file_path}}</td>
  37. <td>
  38. <div style="height: 5em; overflow:auto">
  39. {% for rr in recipe.r_dependencies_recipe.all %}
  40. <a href="#{{rr.depends_on.name}}">{{rr.depends_on.name}}</a><br/>
  41. {% endfor %}
  42. </div>
  43. </td>
  44. </tr>
  45. {% endfor %}
  46. {% endblock %}