1+ {% extends "main.html" %}
2+
3+ {% block title %}Locate Publications | {% endblock %}
4+
5+ {% block head %}
6+ {{ block.super }}
7+ < style >
8+ .locate-container {
9+ max-width : 100% ;
10+ overflow-wrap : break-word;
11+ word-wrap : break-word;
12+ word-break : break-word;
13+ hyphens : auto;
14+ }
15+ .locate-container p , .locate-container div , .locate-container span {
16+ max-width : 100% ;
17+ overflow-wrap : break-word;
18+ word-wrap : break-word;
19+ }
20+ </ style >
21+ {% endblock %}
22+
23+ {% block content %}
24+
25+ < div class ="container-fluid locate-container ">
26+ < div class ="row justify-content-center ">
27+ < div class ="col-md-10 col-lg-8 py-5 ">
28+ < h1 class ="py-2 "> Locate Publications</ h1 >
29+
30+ < p class ="lead "> Help us locate scientific publications on the map!</ p >
31+
32+ < p class ="text-wrap text-break "> The publications listed below have been harvested from various scientific sources but do not have geolocation data yet. If you know the geographic location or area mentioned in any of these publications, you can help us improve our database.</ p >
33+
34+ {% if total_count > 0 %}
35+ < div class ="alert alert-info text-break " role ="alert ">
36+ < i class ="fas fa-info-circle "> </ i >
37+ < strong > {{ total_count }}</ strong > publication{{ total_count|pluralize }} need{{ total_count|pluralize:"s," }} geolocation data.
38+ </ div >
39+
40+ < div class ="row ">
41+ {% for publication in publications %}
42+ < div class ="col-md-6 mb-4 ">
43+ < div class ="card h-100 ">
44+ < div class ="card-body ">
45+ < h5 class ="card-title text-break ">
46+ {% if publication.doi %}
47+ < a href ="https://doi.org/{{ publication.doi }} " target ="_blank " class ="text-decoration-none ">
48+ {{ publication.title|truncatechars:100 }}
49+ < i class ="fas fa-external-link-alt fa-sm "> </ i >
50+ </ a >
51+ {% else %}
52+ {{ publication.title|truncatechars:100 }}
53+ {% endif %}
54+ </ h5 >
55+
56+ {% if publication.abstract %}
57+ < p class ="card-text text-muted text-break ">
58+ {{ publication.abstract|truncatechars:200 }}
59+ </ p >
60+ {% endif %}
61+
62+ < div class ="card-footer bg-transparent ">
63+ < small class ="text-muted text-break ">
64+ {% if publication.publicationDate %}
65+ Published: {{ publication.publicationDate|date:"M d, Y" }}
66+ {% endif %}
67+ {% if publication.source %}
68+ < br > Source: {{ publication.source.name }}
69+ {% endif %}
70+ {% if publication.doi %}
71+ < br > DOI: < span class ="text-break "> {{ publication.doi }}</ span >
72+ {% endif %}
73+ </ small >
74+ </ div >
75+ </ div >
76+ </ div >
77+ </ div >
78+ {% endfor %}
79+ </ div >
80+
81+ {% if publications|length > = 20 %}
82+ < div class ="alert alert-secondary mt-4 " role ="alert ">
83+ < i class ="fas fa-info-circle "> </ i >
84+ Showing first 20 publications. More publications without geolocation data are available.
85+ </ div >
86+ {% endif %}
87+
88+ {% else %}
89+ < div class ="alert alert-success " role ="alert ">
90+ < i class ="fas fa-check-circle "> </ i >
91+ Great! All harvested publications currently have geolocation data.
92+ </ div >
93+ {% endif %}
94+
95+ < div class ="mt-5 ">
96+ < h3 > How to help</ h3 >
97+ < p > If you recognize any publications that reference specific geographic locations, please contact us with the following information:</ p >
98+ < ul >
99+ < li > Publication DOI or title</ li >
100+ < li > Geographic coordinates (latitude/longitude) or place names</ li >
101+ < li > Brief description of the geographic relevance</ li >
102+ </ ul >
103+ < p >
104+ < a href ="/about " class ="btn btn-primary ">
105+ < i class ="fas fa-envelope "> </ i > Contact Us
106+ </ a >
107+ < a href ="/ " class ="btn btn-outline-secondary ">
108+ < i class ="fas fa-map "> </ i > Back to Map
109+ </ a >
110+ </ p >
111+ </ div >
112+ </ div >
113+ </ div >
114+
115+ {% endblock content %}
0 commit comments