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.3KB

2 years ago
2 years ago
2 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div class="row">
  4. {% for result in results %}
  5. <div class="col-6 text-center">
  6. Application ID:
  7. <a href="{{ url_for('search.id_search', id=result['id'], core='all') }}">
  8. {{ result['application_id'] }}
  9. </a>
  10. <br><br>
  11. Year:
  12. {{ result['year'] }}
  13. <br><br>
  14. EPO publication:
  15. <a href="{{ result['epo_publication_url'] }}">
  16. {{ result['epo_publication_url'] }}
  17. </a>
  18. <br><br>
  19. IPC publication:
  20. <a href="{{ result['ipc_publication_url'] }}">
  21. {{ result['ipc_publication_url'] }}
  22. </a>
  23. <br><br>
  24. {% if result['title'] is defined %}
  25. Title:
  26. {{ result['title'] }}
  27. <br><br>
  28. {% endif %}
  29. {% if result['original_title'] is defined %}
  30. Original language title:
  31. {{ result['original_title'] }}
  32. <br><br>
  33. {% endif %}
  34. {% if result['abstract'] is defined %}
  35. Abstract:
  36. {{ result['abstract'] }}
  37. <br><br>
  38. {% endif %}
  39. {% if result['original_abstract'] is defined %}
  40. Original language abstract:
  41. {{ result['original_abstract'] }}
  42. <br><br>
  43. {% endif %}
  44. {% if result['image'] is defined %}
  45. <img class="img-fluid" src="data:image/jpg;base64,{{ result['image'] }}" alt="Drawing of patent" />'
  46. {% endif %}
  47. </div>
  48. {% endfor %}
  49. </div>
  50. {% endblock %}