A search interface for the Performing Patents Otherwise publication as part of the Politics of Patents case study (part of Copim WP6): this parses data from the archive of RTF files and provides additional data from the European Patent Office OPS API. https://patents.copim.ac.uk
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.

78 lines
1.7KB

  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div class="action">
  4. <button onClick="refresh(this)" type="button" value="Refresh" title="new iteration">↻</button>
  5. </div>
  6. <a href="{{ url_for('main.index') }}" class="h1 text-left"> ⇽ </a>
  7. <div class="compare mt-5">
  8. {% for result in results %}
  9. <div class="mt-5 text-center skewY">
  10. {% if result['title'] is defined %}
  11. <p class="h1 mb-2">
  12. Title:
  13. {{ result['title'] }}
  14. </p>
  15. {% endif %}
  16. {% if result['year'] is defined %}
  17. <p class="mb-2">
  18. Year:
  19. {{ result['year'] }}
  20. </p>
  21. {% endif %}
  22. {% if result['country'] is defined %}
  23. <p class="mb-2">
  24. Country:
  25. {{ result['country'].name }}
  26. {{ result['country'].flag }}
  27. </p>
  28. {% endif %}
  29. {% if result['original_title'] is defined %}
  30. <p class="mb-2">
  31. Original language title:
  32. {{ result['original_title'] }}
  33. </p>
  34. {% endif %}
  35. {% if result['abstract'] is defined %}
  36. <p class="mb-2">
  37. Abstract:
  38. {{ result['abstract'] }}
  39. </p>
  40. {% endif %}
  41. {% if result['original_abstract'] is defined %}
  42. <p class="mb-2">
  43. Original language abstract:
  44. {{ result['original_abstract'] }}
  45. </p>
  46. {% endif %}
  47. <p class="mb-2">
  48. European Patent Office PDF:
  49. <a href="{{ url_for('search.id_search', id=result['id'], core='all') }}">
  50. {{ result['application_id'] }}
  51. </a>
  52. </p>
  53. {% if result['image'] is defined %}
  54. <div class="col text-center">
  55. <img class="img-fluid" src="data:image/jpg;base64,{{ result['image'] }}" alt="Drawing accompanying patent for {{ result['title'] }}" />
  56. </div>
  57. {% endif %}
  58. </div>
  59. {% endfor %}
  60. </div>
  61. {% endblock %}