sanggusti commited on
Commit
2aadf09
·
1 Parent(s): cd77918

Edit the homepage

Browse files
Files changed (1) hide show
  1. templates/index.html +77 -2
templates/index.html CHANGED
@@ -1,5 +1,80 @@
1
  {% extends "base.html" %}
2
  {% block content %}
3
- <h2>Welcome to Discharge Guard Cyber</h2>
4
- <p>Use the navigation above to access features.</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  {% endblock %}
 
1
  {% extends "base.html" %}
2
  {% block content %}
3
+ <div class="container my-5">
4
+ <div class="row">
5
+ <div class="col-12">
6
+ <h2 class="text-center mb-4">Welcome to Discharge Guard</h2>
7
+ <div class="card shadow-sm mb-4">
8
+ <div class="card-body">
9
+ <h3 class="card-title">💡 Inspiration</h3>
10
+ <p class="card-text">
11
+ Busy clinics are often overwhelmed with administrative tasks, and generating discharge papers
12
+ manually is time-consuming and prone to errors.
13
+ We were inspired to create a solution that streamlines this process, freeing up valuable time
14
+ for healthcare professionals to focus on patient care.
15
+ We saw the potential of MeldRX to access and leverage patient data securely and compliantly,
16
+ making automated discharge paper generation a reality. 🏥 ⏱️ ➡️ 🧑‍⚕️
17
+ </p>
18
+ </div>
19
+ </div>
20
+
21
+ <div class="card shadow-sm mb-4">
22
+ <div class="card-body">
23
+ <h3 class="card-title">✨ What it does</h3>
24
+ <p class="card-text">
25
+ Discharge Guard is a single-button solution for generating compliant and comprehensive medical
26
+ discharge papers directly within busy clinic workflows.
27
+ By connecting to MeldRX, it automatically pulls necessary patient information and formats it
28
+ into a professional discharge document.
29
+ This eliminates manual data entry, reduces errors, and ensures adherence to healthcare
30
+ standards, all with just one click! 🖱️ ✅ 📄
31
+ </p>
32
+ </div>
33
+ </div>
34
+
35
+ <div class="card shadow-sm mb-4">
36
+ <div class="card-body">
37
+ <h3 class="card-title">🛠️ How we built it</h3>
38
+ <p class="card-text">
39
+ We built Discharge Guard using a combination of powerful and user-friendly technologies. The
40
+ front-end is developed with MultiTransformer huggingface, providing a simple and intuitive
41
+ interface for clinic staff.
42
+ Behind the scenes, we leverage the MeldRX API to securely access patient data in FHIR format.
43
+ </p>
44
+ <p class="card-text">
45
+ Our prototype implements the following key steps:
46
+ </p>
47
+ <ul>
48
+ <li><strong>Produce patient data download by ID:</strong> Clinic staff can input a patient ID,
49
+ and the application retrieves the corresponding patient data from MeldRX using the API.</li>
50
+ <li><strong>Parse patient data:</strong> The fetched FHIR data is processed to extract essential
51
+ details like patient demographics, diagnoses, and treatment plans needed for discharge
52
+ papers.</li>
53
+ <li><strong>Produce prompts for discharge papers:</strong> Using the parsed data, the
54
+ application generates the content for discharge papers, including medical information and
55
+ post-discharge instructions tailored to the patient.</li>
56
+ <li><strong>Create patient data in MeldRX:</strong> The generated discharge papers are uploaded
57
+ back to MeldRX as new resources, ensuring the patient's record stays complete and up to
58
+ date.</li>
59
+ </ul>
60
+ </div>
61
+ </div>
62
+
63
+ <div class="card shadow-sm">
64
+ <div class="card-body">
65
+ <h3 class="card-title">🚀 Next Steps</h3>
66
+ <p class="card-text">
67
+ We're continuously improving Discharge Guard with more features including customizable
68
+ templates, additional clinic system integrations, and refinements based on user feedback.
69
+ Our goal is to make Discharge Guard a widely adopted tool that empowers clinics to provide
70
+ better patient care by streamlining administrative processes.
71
+ </p>
72
+ <div class="text-center mt-4">
73
+ <a href="/generate" class="btn btn-primary btn-lg">Try Discharge Guard Now</a>
74
+ </div>
75
+ </div>
76
+ </div>
77
+ </div>
78
+ </div>
79
+ </div>
80
  {% endblock %}