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.

compare.html 1.5KB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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['original_title'] is defined %}
  23. <p class="mb-2">
  24. Original language title:
  25. {{ result['original_title'] }}
  26. </p>
  27. {% endif %}
  28. {% if result['abstract'] is defined %}
  29. <p class="mb-2">
  30. Abstract:
  31. {{ result['abstract'] }}
  32. </p>
  33. {% endif %}
  34. {% if result['original_abstract'] is defined %}
  35. <p class="mb-2">
  36. Original language abstract:
  37. {{ result['original_abstract'] }}
  38. </p>
  39. {% endif %}
  40. <p class="mb-2">
  41. European Patent Office PDF:
  42. <a href="{{ url_for('search.id_search', id=result['id'], core='all') }}">
  43. {{ result['application_id'] }}
  44. </a>
  45. </p>
  46. {% if result['image'] is defined %}
  47. <div class="col text-center">
  48. <img class="img-fluid" src="data:image/jpg;base64,{{ result['image'] }}" alt="Drawing accompanying patent for {{ result['title'] }}" />
  49. </div>
  50. {% endif %}
  51. </div>
  52. {% endfor %}
  53. </div>
  54. {% endblock %}