game_detail.html 884 B

1234567891011121314151617181920212223
  1. {% extends "base.html" %}
  2. {% load static %}
  3. {% block title %}{{object.name}}{% endblock %}
  4. {% block content %}
  5. <img src={{object.marquee.url}} />
  6. <img src={{object.screenshot.url}} />
  7. <ul>
  8. <li>{{object.game_system}}</li>
  9. <li>{{object.publisher}}</li>
  10. <li>{{object.developer}}</li>
  11. <li>{{object.players}}</li>
  12. <li><a href="{{object.rom_file.url}}">Download ROM</a></li>
  13. </ul>
  14. <div id="webretro-container" style="width:800px; height:600px">
  15. </div>
  16. <script type="text/javascript" src="{% static 'js/webretro/embed/embed.js' %}"></script>
  17. <script>
  18. webretroEmbed(document.getElementById("webretro-container"), "{% static 'js/webretro/index.html' %}", {system: "{{object.game_system.retropie_slug}}", rom:"{{request.scheme}}://{{request.META.HTTP_HOST}}{{object.rom_file.url}}"});
  19. </script>
  20. {% endblock %}