File size: 9,265 Bytes
e658d9c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Processed Data</title>
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
    <style>

        body {

            background-color: #1d2329;

            color: #e0e0e0;

            font-family: 'Arial', sans-serif;

        }



        .container {

            display: flex;

            flex-direction: row;

            height: 100vh;

            margin-top: 20px;

        }



        .left-side {

            flex: 1;

            padding: 20px;

            overflow-y: auto;

            border: none;

            border-radius: 10px;

        }



        .right-side {

            flex: 1;

            padding: 20px;

            background-color: #1d2c38;

            border-left: 1px solid #4e5d6c;

            border-radius: 10px;

            display: flex;

            justify-content: center;

            align-items: center;

        }



        .card {

            background-color: #2a2f36;

            border: none;

            border-radius: 10px;

            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);

            margin-bottom: 20px;

        }



        .card-header {

            background-color: #28a745;

            color: white;

            border-top-left-radius: 10px;

            border-top-right-radius: 10px;

        }



        .list-group-item {

            border: none;

            background-color: #3a4149;

            color: #e0e0e0;

            padding: 10px;

        }



        iframe {

            width: 100%;

            height: 100%;

            border: none;

            border-radius: 12px;

        }



        .list-group-item strong {

            color: #e0e0e0;

        }



        h2 {

            margin-bottom: 20px;

            color: #e0e0e0;

        }



        h3 {

            margin-top: 10px;

            margin-bottom: 10px;

            font-size: 1.25rem;

            color: #28a745;

        }



        pre {

            background-color: #3a4149;

            padding: 10px;

            border-radius: 5px;

            font-size: 1rem;

            color: #e0e0e0;

            overflow-x: auto;

        }



        .card-footer {

            text-align: center;

            border-top: 1px solid #4e5d6c;

            padding: 15px;

        }



        .no-pdf-message {

            text-align: center;

            font-size: 1.25rem;

            color: #6c757d;

        }



        @keyframes pulse {

            0% {

                transform: scale(1);

            }



            50% {

                transform: scale(1.2);

            }



            100% {

                transform: scale(1);

            }

        }



        .emoji {

            font-size: 2rem;

            animation: pulse 1s infinite;

            display: inline-block;

            margin-right: 10px;

        }



        .emoji-high {

            color: #28a745;

        }



        .emoji-medium {

            color: #ffc107;

        }



        .emoji-low {

            color: #dc3545;

        }



        a {

            color: #007bff;

        }

    </style>

</head>

<body>
    <div class="container">
        <div class="left-side">
            <div class="card">
                <div class="card-header text-center">
                    <h3>Model</h3>
                    <h2>Extracted Details</h2>
                </div>
                <div class="card-body">
                    <ul class="list-group mb-3">
                        <li class="list-group-item">
                            <strong>Extracted Data:</strong>
                            {% for filename, text in data.extracted_text.items() %}
                            <h3>{{ filename }}:</h3>
                            <img src="{{ Img[filename] }}" alt="Processed Image" class="img-fluid mb-3"

                                style="max-width: 100%; height: auto;" />
                            <strong>Text:</strong>
                            <p>{{ text }}</p>
                            {% endfor %}
                        </li>
                        <li class="list-group-item">
                            <strong>Name:</strong>
                            {% if data.name is iterable and data.name is not string %}
                            <ul>
                                {% for value in data.name %}
                                <li>{{ value }}<br></li>
                                {% endfor %}
                            </ul>
                            {% else %}
                            <p>{{ data.name }}</p>
                            {% endif %}
                        </li>
                        <li class="list-group-item">
                            <strong>Designation:</strong>
                            {% if data.Designation is iterable and data.Designation is not string %}
                            <ul>
                                {% for value in data.Designation %}
                                <li>{{ value }}<br></li>
                                {% endfor %}
                            </ul>
                            {% else %}
                            <p>{{ data.Designation }}</p>
                            {% endif %}
                        </li>
                        <li class="list-group-item">
                            <strong>Contact Number:</strong>
                            {% if data.contact_number is iterable and data.contact_number is not string %}
                            <ul>
                                {% for value in data.contact_number %}
                                <li>{{ value }}<br></li>
                                {% endfor %}
                            </ul>
                            {% else %}
                            <p>{{ data.contact_number }}</p>
                            {% endif %}
                        </li>
                        <li class="list-group-item">
                            <strong>Email:</strong>
                            {% if data.email is iterable and data.email is not string %}
                            <ul>
                                {% for value in data.email %}
                                <li>{{ value }}<br></li>
                                {% endfor %}
                            </ul>
                            {% else %}
                            <p>{{ data.email }}</p>
                            {% endif %}
                        </li>
                        <li class="list-group-item">
                            <strong>Address:</strong>
                            {% if data.Location is iterable and data.Location is not string %}
                            <ul>
                                {% for value in data.Location %}
                                <li>{{ value }}<br></li>
                                {% endfor %}
                            </ul>
                            {% else %}
                            <p>{{ data.Location }}</p>
                            {% endif %}
                        </li>
                        <li class="list-group-item">
                            <strong>Links:</strong>
                            {% if data.Link is iterable and data.Link is not string %}
                            <ul>
                                {% for value in data.Link %}
                                <li>{{ value }}<br></li>
                                {% endfor %}
                            </ul>
                            {% else %}
                            <p>{{ data.Link }}</p>
                            {% endif %}
                        </li>
                        <li class="list-group-item">
                            <strong>Organisation:</strong>
                            {% if data.Company is iterable and data.Company is not string %}
                            <ul>
                                {% for value in data.Company %}
                                <li>{{ value }}<br></li>
                                {% endfor %}
                            </ul>
                            {% else %}
                            <p>{{ data.Company }}</p>
                            {% endif %}
                        </li>
                    </ul>
                    <a href="{{ url_for('index') }}">
                        <button type="button" class="btn btn-primary">Back to Upload</button>
                    </a>
                </div>
            </div>
            <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
            <script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
            <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>

</html>