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.

composer_dependencies.tmpl 460B

12345678910111213141516171819
  1. {{if .dependencies}}
  2. <p><strong>{{.title}}</strong></p>
  3. <table class="ui single line very basic table">
  4. <thead>
  5. <tr>
  6. <th class="eleven wide">{{.root.locale.Tr "packages.dependency.id"}}</th>
  7. <th class="five wide">{{.root.locale.Tr "packages.dependency.version"}}</th>
  8. </tr>
  9. </thead>
  10. <tbody>
  11. {{range $dependency, $version := .dependencies}}
  12. <tr>
  13. <td>{{$dependency}}</td>
  14. <td>{{$version}}</td>
  15. </tr>
  16. {{end}}
  17. </tbody>
  18. </table>
  19. {{end}}