mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2026-05-10 07:57:47 -04:00
- Introduced ItineraryViewSet for managing itinerary items with create and reorder functionalities. - Added itinerary linking capabilities in CollectionModal and CollectionItineraryPlanner components. - Implemented new ItineraryLinkModal for linking existing items to specific dates. - Enhanced the frontend with new modals for creating locations, lodging, transportation, notes, and checklists. - Updated the backend to handle itinerary item creation and reordering with appropriate permissions. - Improved data handling for unscheduled items and their association with the itinerary. - Added new dependencies to the frontend for enhanced functionality.
21 lines
648 B
Python
21 lines
648 B
Python
from .tags_view import *
|
|
from .location_image_view import *
|
|
from .location_view import *
|
|
from .category_view import *
|
|
from .checklist_view import *
|
|
from .collection_view import *
|
|
from .generate_description_view import *
|
|
from .ics_calendar_view import *
|
|
from .note_view import *
|
|
from .reverse_geocode_view import *
|
|
from .stats_view import *
|
|
from .transportation_view import *
|
|
from .global_search_view import *
|
|
from .attachment_view import *
|
|
from .lodging_view import *
|
|
from .recommendations_view import *
|
|
from .import_export_view import *
|
|
from .trail_view import *
|
|
from .activity_view import *
|
|
from .visit_view import *
|
|
from .itinerary_view import * |