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

compare.html 1.6KB

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
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. <br>
  16. {% endif %}
  17. {% if result['year'] is defined %}
  18. <p class="mb-2">
  19. Year:
  20. {{ result['year'] }}
  21. </p>
  22. {% endif %}
  23. {% if result['title'] is defined %}
  24. Title:
  25. {{ result['title'] }}
  26. <br><br>
  27. {% endif %}
  28. {% if result['original_title'] is defined %}
  29. Original language title:
  30. {{ result['original_title'] }}
  31. <br><br>
  32. {% endif %}
  33. {% if result['abstract'] is defined %}
  34. <p>
  35. Abstract:
  36. {{ result['abstract'] }}
  37. <br><br>
  38. </p>
  39. {% endif %}
  40. {% if result['original_abstract'] is defined %}
  41. <p>
  42. Original language abstract:
  43. {{ result['original_abstract'] }}
  44. <br><br>
  45. </p>
  46. {% endif %}
  47. European Patent Office PDF:
  48. <a href="{{ url_for('search.id_search', id=result['id'], core='all') }}">
  49. <span class="result-entry">
  50. {{ result['application_id'] }}
  51. </span>
  52. </a>
  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 %}