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

Update templates/result.html

Browse files
Files changed (1) hide show
  1. templates/result.html +7 -7
templates/result.html CHANGED
@@ -145,7 +145,7 @@
145
  <h5 class="card-title">Name:</h5>
146
  <ul>
147
  {% for value in data.name %}
148
- {% if value|lower != 'Not found' %}
149
  <li>{{ value }}</li>
150
  {% endif %}
151
  {% endfor %}
@@ -159,7 +159,7 @@
159
  <h5 class="card-title">Designation:</h5>
160
  <ul>
161
  {% for value in data.Designation %}
162
- {% if value|lower != 'Not found' %}
163
  <li>{{ value }}</li>
164
  {% endif %}
165
  {% endfor %}
@@ -173,7 +173,7 @@
173
  <h5 class="card-title">Contact number:</h5>
174
  <ul>
175
  {% for value in data.contact_number %}
176
- {% if value|lower != 'Not found' %}
177
  <li>{{ value }}</li>
178
  {% endif %}
179
  {% endfor %}
@@ -186,7 +186,7 @@
186
  <h5 class="card-title">Email:</h5>
187
  <ul>
188
  {% for value in data.email %}
189
- {% if value|lower != 'Not found' %}
190
  <li>{{ value }}</li>
191
  {% endif %}
192
  {% endfor %}
@@ -199,7 +199,7 @@
199
  <h5 class="card-title">Location:</h5>
200
  <ul>
201
  {% for value in data.Location %}
202
- {% if value|lower != 'Not found' %}
203
  <li>{{ value }}</li>
204
  {% endif %}
205
  {% endfor %}
@@ -212,7 +212,7 @@
212
  <h5 class="card-title">Link:</h5>
213
  <ul>
214
  {% for value in data.Link %}
215
- {% if value|lower != 'Not found' %}
216
  <li>{{ value }}</li>
217
  {% endif %}
218
  {% endfor %}
@@ -225,7 +225,7 @@
225
  <h5 class="card-title">Organisation:</h5>
226
  <ul>
227
  {% for value in data.Company %}
228
- {% if value|lower != 'Not found' %}
229
  <li>{{ value }}</li>
230
  {% endif %}
231
  {% endfor %}
 
145
  <h5 class="card-title">Name:</h5>
146
  <ul>
147
  {% for value in data.name %}
148
+ {% if value|lower != 'not found' %}
149
  <li>{{ value }}</li>
150
  {% endif %}
151
  {% endfor %}
 
159
  <h5 class="card-title">Designation:</h5>
160
  <ul>
161
  {% for value in data.Designation %}
162
+ {% if value|lower != 'not found' %}
163
  <li>{{ value }}</li>
164
  {% endif %}
165
  {% endfor %}
 
173
  <h5 class="card-title">Contact number:</h5>
174
  <ul>
175
  {% for value in data.contact_number %}
176
+ {% if value|lower != 'not found' %}
177
  <li>{{ value }}</li>
178
  {% endif %}
179
  {% endfor %}
 
186
  <h5 class="card-title">Email:</h5>
187
  <ul>
188
  {% for value in data.email %}
189
+ {% if value|lower != 'not found' %}
190
  <li>{{ value }}</li>
191
  {% endif %}
192
  {% endfor %}
 
199
  <h5 class="card-title">Location:</h5>
200
  <ul>
201
  {% for value in data.Location %}
202
+ {% if value|lower != 'not found' %}
203
  <li>{{ value }}</li>
204
  {% endif %}
205
  {% endfor %}
 
212
  <h5 class="card-title">Link:</h5>
213
  <ul>
214
  {% for value in data.Link %}
215
+ {% if value|lower != 'not found' %}
216
  <li>{{ value }}</li>
217
  {% endif %}
218
  {% endfor %}
 
225
  <h5 class="card-title">Organisation:</h5>
226
  <ul>
227
  {% for value in data.Company %}
228
+ {% if value|lower != 'not found' %}
229
  <li>{{ value }}</li>
230
  {% endif %}
231
  {% endfor %}