mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2026-08-02 17:01:58 -04:00
- Introduced CalendarViewSet for handling calendar events, including user authentication and event retrieval. - Implemented calendar event services for managing various event types (visits, transportation, lodging, etc.). - Added new calendar-related components in the frontend, including event display, filtering, and sidebar statistics. - Enhanced user avatar component for better visual representation. - Updated application version to reflect new features.
22 lines
677 B
Python
22 lines
677 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 .calendar_view import *
|
|
from .itinerary_view import * |