Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit9da9a20

Browse files
committed
minor changes and diagram upload
1 parentc1ac09f commit9da9a20

File tree

8 files changed

+47
-7
lines changed

8 files changed

+47
-7
lines changed

‎landing/templates/landing/index.html‎

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
data-aos="fade-up"data-aos-delay="200">
1212
<h1>Even One Missing Person Is One Too Many!</h1>
1313
<h2>FaceFind, firmly believes in that, and we are committed to change this by
14-
finding missing people using Face
14+
finding missing people usingComputer Vision andFace
1515
Recognition Technologies.</h2>
1616
<divclass="d-flex justify-content-center justify-content-lg-start">
1717
<ahref="#about"class="btn-get-started scrollto">Get Started</a>
18-
<ahref="#"class="glightbox btn-watch-video"><i
18+
<ahref="https://youtu.be/onXOQIu5jCg"class="glightbox btn-watch-video"><i
1919
class="bi bi-play-circle"></i><span>Demo Video</span></a>
2020
</div>
2121
</div>
@@ -227,6 +227,38 @@ <h2>Frequently Asked Questions</h2>
227227
</div>
228228
</li>
229229

230+
<lidata-aos="fade-up"data-aos-delay="300">
231+
<iclass="bx bx-help-circle icon-help"></i><adata-bs-toggle="collapse"
232+
data-bs-target="#faq-list-4"class="collapsed">This seems
233+
interesting. How can I help?<i
234+
class="bx bx-chevron-down icon-show"></i><i
235+
class="bx bx-chevron-up icon-close"></i></a>
236+
237+
<divid="faq-list-4"class="collapse"data-bs-parent=".faq-list">
238+
<p>
239+
Thank you for your interest. Every help towards
240+
finding a loved one gone missing
241+
counts. You can help us in
242+
the following ways,<br>
243+
<iclass="ri-check-double-line"></i>Please
244+
volunteer to spot suspected missing people
245+
and report them.<br>
246+
<iclass="ri-check-double-line"></i>Connect us
247+
with NGOs working in this space.<br>
248+
<iclass="ri-check-double-line"></i>Connect us with
249+
relevant state and central
250+
government departments.<br>
251+
<iclass="ri-check-double-line"></i>Sponsor hosting
252+
fees.<br>
253+
<iclass="ri-check-double-line"></i>Sponsor Azure API
254+
charges.<br>
255+
<iclass="ri-check-double-line"></i>Contact us at
256+
facefindxyz@gmail.com for more details.<br>
257+
</p>
258+
259+
</div>
260+
</li>
261+
230262

231263
</ul>
232264
</div>

‎msengage/settings.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117

118118
USE_I18N=True
119119

120-
USE_TZ=True
120+
#USE_TZ = True
121121

122122

123123
# Static files (CSS, JavaScript, Images)

‎people/forms.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Meta:
1313
classMissingPersonUpdateForm(forms.ModelForm):
1414
classMeta:
1515
model=MissingPerson
16-
exclude= ['face_id','is_verified','found_location']
16+
exclude= ['face_id','is_verified','found_location','found_time','is_contacted']
1717
# fields = "__all__"
1818

1919

‎people/templates/people/found_person_details.html‎

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,19 @@
88

99
<divclass="section-title">
1010
<h2>Potential match found!</h2>
11+
12+
1113
</div>
1214

1315
<divclass="row justify-content-center">
1416
<divclass="col-lg-6"style="padding: 10px;">
1517
<divclass="member d-flex align-items-start">
16-
<divclass="rounded mx-auto d-block"><imgsrc="{{found_person_details.0.photo.url}}"alt=""
17-
class="img-fluid"></div>
18+
<divclass="rounded mx-auto d-block"style="text-align: center;"><img
19+
src="{{found_person_details.0.photo.url}}"alt=""class="img-fluid"> Registered Image
20+
<br><br>
21+
<imgsrc="{{reported_person_details.0.photo.url}}"alt=""class="img-fluid">
22+
Reported Image
23+
</div><br>
1824
<divclass="member-info">
1925
<h4>{{found_person_details.0.first_name}} {{found_person_details.0.last_name}}</h4>
2026
<span>Last seen at : {{found_person_details.0.last_seen}}</span>

‎people/templates/people/missing_person_list.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ <h2>List of Missing People</h2>
1818
<divclass="rounded mx-auto d-block"><imgsrc="{{object.photo.url}}"alt=""height="100"
1919
width="100"></div>
2020
<divclass="member-info">
21-
<h4>{{ object.first_name }}</h4>
21+
<h4>{{ object.first_name }} {{ object.last_name }}</h4>
2222
<span>Last seen at {{ object.last_seen}}, Status : {{object.status}}</span>
2323
<p>{{ object.description }}</p>
2424
<br>

‎people/views.py‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,8 @@ class FoundPersonTemplateView(LoginRequiredMixin, TemplateView):
266266

267267
defget_context_data(self,**kwargs):
268268
context=super().get_context_data(**kwargs)
269+
context['reported_person_details']=ReportedPerson.objects.filter(matched_face_id=self.kwargs['face_id'] )
270+
269271
context['found_person_details']=MissingPerson.objects.filter(face_id=self.kwargs['face_id'] )
270272
returncontext
271273

160 KB
Loading

‎screenshots/email_received.png‎

50.2 KB
Loading

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp