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.

108 lines
2.8KB

  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div class="row">
  4. <div class="col m-5">
  5. <a href="{{ url_for('main.index') }}" class="h1 text-left"> ⇽ </a>
  6. <p class="h1 text-center">a timeline of inventions</p>
  7. <p class="mt-2 text-center">{{ num_found }} patents found out of {{ total_number }}</p>
  8. </div>
  9. </div>
  10. <div class="row p-3">
  11. {% if search is defined %}
  12. <form action="{{ url_for('search.basic_search') }}" method="POST">
  13. <input type="hidden" name="search" value="{{ search }}">
  14. {% elif country_code is defined %}
  15. <form action="{{ url_for('search.country_search') }}" method="POST">
  16. <input type="hidden" name="country_code" value="{{ country_code }}">
  17. {% elif year is defined %}
  18. <form action="{{ url_for('search.year_search') }}" method="POST">
  19. <input type="hidden" name="year" value="{{ year }}">
  20. {% endif %}
  21. <input type="hidden" name="searchopt" value="{{ core }}">
  22. sort by:
  23. <select name="sort" id="sort" onchange="this.form.submit()">
  24. <option value="relevance" {% if sort == 'relevance' %} selected {% endif %}>relevance</option>
  25. <option value="year desc" {% if sort == 'year desc' %} selected {% endif %}>year descending</option>
  26. <option value="year asc" {% if sort == 'year asc' %} selected {% endif %}>year ascending</option>
  27. </select>
  28. <noscript>
  29. <input type="submit" class="btn btn-default" value="Set" />
  30. </noscript>
  31. </form>
  32. </div>
  33. {{country_facet}}
  34. {{year_facet}}
  35. {% if results == 'no results found' %}
  36. {{ results }}
  37. {% else %}
  38. {% for result in results %}
  39. <p class="h1">
  40. Year:
  41. {{ result['year'] }}
  42. </p>
  43. {% if result['title'] is defined %}
  44. <p class="mb-2 mt-5">
  45. <span class="emphasis">Title:</span>
  46. <span class="result-entry">
  47. {{ result['title'] }}
  48. </span>
  49. </p>
  50. {% endif %}
  51. {% if result['country'] is defined %}
  52. <p class="mb-2">
  53. <span class="emphasis">Country:</span>
  54. {% if result['country'].name is defined %}
  55. {{ result['country'].name }} {{ result['country'].flag }}
  56. {% else %}
  57. {{ result['country'] }}
  58. {% endif %}
  59. </p>
  60. {% endif %}
  61. {% if result['abstract'] is defined %}
  62. <p class="mb-2">
  63. <span class="emphasis">Abstract:</span>
  64. <span class="result-entry">
  65. {{ result['abstract'] }}
  66. </span>
  67. </p>
  68. {% endif %}
  69. <div class="mt-2 mb-5 search-links">
  70. <p>
  71. <span class="emphasis">European Patent Office PDF:</span>
  72. <a href="{{ url_for('search.id_search', id=result['id'], core='all') }}">
  73. <span class="result-entry">
  74. {{ result['application_id'] }}
  75. </span>
  76. </a>
  77. </p>
  78. </div>
  79. {% endfor %}
  80. {% endif %}
  81. {% if search is defined %}
  82. <script type="text/javascript">
  83. highlightSearchTerms({{ search|tojson}})
  84. </script>
  85. {% endif %}
  86. {% endblock %}