WebashalarForML commited on
Commit
eb70f0c
1 Parent(s): 84c5ecb

Update templates/result.html

Browse files
Files changed (1) hide show
  1. templates/result.html +7 -0
templates/result.html CHANGED
@@ -146,6 +146,7 @@
146
  <ul>
147
  {% for value in data.name %}
148
  {% if value|lower != 'not found' %}
 
149
  <li>{{ value }}</li>
150
  {% endif %}
151
  {% endfor %}
@@ -160,6 +161,7 @@
160
  <ul>
161
  {% for value in data.Designation %}
162
  {% if value|lower != 'not found' %}
 
163
  <li>{{ value }}</li>
164
  {% endif %}
165
  {% endfor %}
@@ -174,6 +176,7 @@
174
  <ul>
175
  {% for value in data.contact_number %}
176
  {% if value|lower != 'not found' %}
 
177
  <li>{{ value }}</li>
178
  {% endif %}
179
  {% endfor %}
@@ -187,6 +190,7 @@
187
  <ul>
188
  {% for value in data.email %}
189
  {% if value|lower != 'not found' %}
 
190
  <li>{{ value }}</li>
191
  {% endif %}
192
  {% endfor %}
@@ -200,6 +204,7 @@
200
  <ul>
201
  {% for value in data.Location %}
202
  {% if value|lower != 'not found' %}
 
203
  <li>{{ value }}</li>
204
  {% endif %}
205
  {% endfor %}
@@ -213,6 +218,7 @@
213
  <ul>
214
  {% for value in data.Link %}
215
  {% if value|lower != 'not found' %}
 
216
  <li>{{ value }}</li>
217
  {% endif %}
218
  {% endfor %}
@@ -226,6 +232,7 @@
226
  <ul>
227
  {% for value in data.Company %}
228
  {% if value|lower != 'not found' %}
 
229
  <li>{{ value }}</li>
230
  {% endif %}
231
  {% endfor %}
 
146
  <ul>
147
  {% for value in data.name %}
148
  {% if value|lower != 'not found' %}
149
+ <h5 class="card-title">Name:</h5>
150
  <li>{{ value }}</li>
151
  {% endif %}
152
  {% endfor %}
 
161
  <ul>
162
  {% for value in data.Designation %}
163
  {% if value|lower != 'not found' %}
164
+ <h5 class="card-title">Designation:</h5>
165
  <li>{{ value }}</li>
166
  {% endif %}
167
  {% endfor %}
 
176
  <ul>
177
  {% for value in data.contact_number %}
178
  {% if value|lower != 'not found' %}
179
+ <h5 class="card-title">Contact number:</h5>
180
  <li>{{ value }}</li>
181
  {% endif %}
182
  {% endfor %}
 
190
  <ul>
191
  {% for value in data.email %}
192
  {% if value|lower != 'not found' %}
193
+ <h5 class="card-title">Email:</h5>
194
  <li>{{ value }}</li>
195
  {% endif %}
196
  {% endfor %}
 
204
  <ul>
205
  {% for value in data.Location %}
206
  {% if value|lower != 'not found' %}
207
+ <h5 class="card-title">Location:</h5>
208
  <li>{{ value }}</li>
209
  {% endif %}
210
  {% endfor %}
 
218
  <ul>
219
  {% for value in data.Link %}
220
  {% if value|lower != 'not found' %}
221
+ <h5 class="card-title">Link:</h5>
222
  <li>{{ value }}</li>
223
  {% endif %}
224
  {% endfor %}
 
232
  <ul>
233
  {% for value in data.Company %}
234
  {% if value|lower != 'not found' %}
235
+ <h5 class="card-title">Organisation:</h5>
236
  <li>{{ value }}</li>
237
  {% endif %}
238
  {% endfor %}