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.

theme.html 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <a href="/contents/" class="search-back text-left" title="back to search">search</a>
  4. <div class="themes">
  5. {{ text|safe }}
  6. {% if 'error' in results %}
  7. {{ results }}
  8. {% else %}
  9. <div class="themeResults">
  10. {% for result in results %}
  11. <div class="eachthemeResult">
  12. <a href="{{ url_for('search.id_search', id=result['id'], core=core) }}">
  13. <p class="">
  14. Year:
  15. {{ result['year'] }}
  16. </p>
  17. {% if result['title'] is defined %}
  18. <p class="">
  19. <span class="emphasis">Title:</span>
  20. <span class="result-entry">
  21. {{ result['title'] }}
  22. </span>
  23. </p>
  24. {% endif %}
  25. {% if result['country'] is defined %}
  26. <p class="">
  27. <span class="emphasis">Country:</span>
  28. {% if result['country'].name is defined %}
  29. {{ result['country'].name }} {{ result['country'].flag }}
  30. {% else %}
  31. {{ result['country'] }}
  32. {% endif %}
  33. </p>
  34. {% endif %}
  35. {% if result['abstract'] is defined %}
  36. <!-- <p class="mb-2">
  37. <span class="emphasis">Abstract:</span>
  38. <span class="result-entry">
  39. {{ result['abstract'] }}
  40. </span>
  41. </p> -->
  42. {% endif %}
  43. <!-- <div class="search-links">
  44. <p>
  45. <span class="emphasis">Link:</span>
  46. <span class="result-entry">
  47. {{ result['application_id'] }}
  48. </span>
  49. </p>
  50. </div> -->
  51. </a>
  52. </div>
  53. {% endfor %}
  54. </div>
  55. {% endif %}
  56. </div>
  57. {% endblock %}