]> git.menne-pb.de Git - pinpoint.git/commit
Add possibility to mark a location.
authorJörn Menne <jmenne@fedora.de>
Sat, 30 Nov 2024 21:43:48 +0000 (22:43 +0100)
committerJörn Menne <jmenne@fedora.de>
Sat, 30 Nov 2024 21:43:48 +0000 (22:43 +0100)
commitf60a524ed700c7c71cf7d0fbf8022e6187867909
treebd1841953fbe3015ecea7c08b5633f5966a82cb2
parent13f71611bc09434db764b50f02b4f77b2cff288b
Add possibility to mark a location.

The location can chosen by either clicking on a map,
or by writing the lat/lng values by hand.
Eitherway a marker is added to the map, where the report is located.

The marker is also always shown, where the report is listed.
24 files changed:
.gitignore [new file with mode: 0644]
georeport/__init__.py [new file with mode: 0644]
georeport/admin.py [new file with mode: 0644]
georeport/apps.py [new file with mode: 0644]
georeport/migrations/0001_initial.py [new file with mode: 0644]
georeport/migrations/__init__.py [new file with mode: 0644]
georeport/models.py [new file with mode: 0644]
georeport/static/georeport/create_Report.js [new file with mode: 0644]
georeport/static/georeport/details.js [new file with mode: 0644]
georeport/static/georeport/mapsetup.js [new file with mode: 0644]
georeport/templates/georeport/base.html [new file with mode: 0644]
georeport/templates/georeport/create.html [new file with mode: 0644]
georeport/templates/georeport/detail.html [new file with mode: 0644]
georeport/templates/georeport/index.html [new file with mode: 0644]
georeport/tests.py [new file with mode: 0644]
georeport/urls.py [new file with mode: 0644]
georeport/views.py [new file with mode: 0644]
manage.py [new file with mode: 0755]
pinpoint/__init__.py [new file with mode: 0644]
pinpoint/asgi.py [new file with mode: 0644]
pinpoint/settings.py [new file with mode: 0644]
pinpoint/urls.py [new file with mode: 0644]
pinpoint/wsgi.py [new file with mode: 0644]
requirements.txt [new file with mode: 0644]