Skip to content
This repository has been archived by the owner on Dec 1, 2024. It is now read-only.

Commit

Permalink
chore: Added small frontend updates and improved docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dikayx committed Aug 21, 2024
1 parent c30cf2e commit 0e3ee24
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
2 changes: 2 additions & 0 deletions docs/USER_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ The result section displays the structured information extracted from the email

The tabs are only shown, if the corresponding information is available in the email data. For example, if the email does not contain any attachments, the "Attachments" tab will not be displayed.

Some mail providers encode the email data in Base64 format. In such cases, the application will automatically decode the data and display it in a human-readable format.

You can download the attachments directly from the application by clicking on the download button next to the attachment name. However, not all attachments can be downloaded directly from the application. In such cases, just the name of the attachment will be displayed.

## Limitations
Expand Down
17 changes: 16 additions & 1 deletion mapy/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,23 @@
class="container d-flex justify-content-between align-items-center"
>
<div>
<span class="text-muted">Made with ♡ in 🇪🇺</span>
<span class="text-muted">Made with ♡ by</span>
<span class="text-muted">
<a
href="https://github.com/dan-koller"
class="text-muted"
>Dan Koller</a
>
</span>
</div>
<div>
<span class="text-muted">
<a
href="https://github.com/dan-koller/mapy/blob/main/docs/USER_GUIDE.md"
class="text-muted"
>Need help?</a
>
</span>
</div>
</footer>

Expand Down
1 change: 1 addition & 0 deletions mapy/templates/result.html
Original file line number Diff line number Diff line change
Expand Up @@ -256,4 +256,5 @@ <h5 class="card-title">Attachments</h5>
/>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>

<!-- Custom map script -->
<script src="{{ url_for('static', filename='js/map.js') }}"></script>
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ beautifulsoup4~=4.12.3
geoip2~=4.8.0
IPy~=1.1
pytest~=8.3.1
pytest-cov==5.0.0
pytest-cov~=5.0.0

0 comments on commit 0e3ee24

Please sign in to comment.