2024-07-09 11:30:05 -04:00
|
|
|
import os
|
2024-07-08 11:44:39 -04:00
|
|
|
from django.contrib import admin
|
|
|
|
from django.utils.html import mark_safe
|
2025-01-18 20:06:12 -05:00
|
|
|
from .models import Adventure, Checklist, ChecklistItem, Collection, Transportation, Note, AdventureImage, Visit, Category, Attachment
|
2025-01-09 12:38:29 -05:00
|
|
|
from worldtravel.models import Country, Region, VisitedRegion, City, VisitedCity
|
2024-11-29 17:51:32 -05:00
|
|
|
from allauth.account.decorators import secure_admin_login
|
|
|
|
|
|
|
|
admin.autodiscover()
|
|
|
|
admin.site.login = secure_admin_login(admin.site.login)
|
|
|
|
|
2024-07-08 11:44:39 -04:00
|
|
|
class AdventureAdmin(admin.ModelAdmin):
|
2024-11-14 09:37:35 -05:00
|
|
|
list_display = ('name', 'get_category', 'get_visit_count', 'user_id', 'is_public')
|
|
|
|
list_filter = ( 'user_id', 'is_public')
|
2024-09-23 14:12:19 -04:00
|
|
|
search_fields = ('name',)
|
2024-07-08 11:44:39 -04:00
|
|
|
|
2024-11-14 09:37:35 -05:00
|
|
|
def get_category(self, obj):
|
|
|
|
if obj.category and obj.category.display_name and obj.category.icon:
|
|
|
|
return obj.category.display_name + ' ' + obj.category.icon
|
|
|
|
elif obj.category and obj.category.name:
|
|
|
|
return obj.category.name
|
|
|
|
else:
|
|
|
|
return 'No Category'
|
|
|
|
|
|
|
|
get_category.short_description = 'Category'
|
|
|
|
|
|
|
|
def get_visit_count(self, obj):
|
|
|
|
return obj.visits.count()
|
|
|
|
|
|
|
|
get_visit_count.short_description = 'Visit Count'
|
|
|
|
|
2024-07-08 11:44:39 -04:00
|
|
|
|
|
|
|
class CountryAdmin(admin.ModelAdmin):
|
2024-09-10 23:00:13 -04:00
|
|
|
list_display = ('name', 'country_code', 'number_of_regions')
|
2024-09-13 20:33:44 -04:00
|
|
|
list_filter = ('subregion',)
|
2024-09-23 14:12:19 -04:00
|
|
|
search_fields = ('name', 'country_code')
|
2024-07-08 11:44:39 -04:00
|
|
|
|
|
|
|
def number_of_regions(self, obj):
|
|
|
|
return Region.objects.filter(country=obj).count()
|
|
|
|
|
|
|
|
number_of_regions.short_description = 'Number of Regions'
|
|
|
|
|
|
|
|
|
|
|
|
class RegionAdmin(admin.ModelAdmin):
|
|
|
|
list_display = ('name', 'country', 'number_of_visits')
|
2024-09-13 20:33:44 -04:00
|
|
|
list_filter = ('country',)
|
2024-09-23 14:12:19 -04:00
|
|
|
search_fields = ('name', 'country__name')
|
2024-07-08 11:44:39 -04:00
|
|
|
# list_filter = ('country', 'number_of_visits')
|
|
|
|
|
|
|
|
def number_of_visits(self, obj):
|
|
|
|
return VisitedRegion.objects.filter(region=obj).count()
|
|
|
|
|
|
|
|
number_of_visits.short_description = 'Number of Visits'
|
|
|
|
|
2025-01-09 11:11:02 -05:00
|
|
|
class CityAdmin(admin.ModelAdmin):
|
|
|
|
list_display = ('name', 'region', 'country')
|
|
|
|
list_filter = ('region', 'region__country')
|
|
|
|
search_fields = ('name', 'region__name', 'region__country__name')
|
|
|
|
|
|
|
|
def country(self, obj):
|
|
|
|
return obj.region.country.name
|
|
|
|
|
|
|
|
country.short_description = 'Country'
|
|
|
|
|
2024-07-08 11:44:39 -04:00
|
|
|
from django.contrib import admin
|
|
|
|
from django.contrib.auth.admin import UserAdmin
|
|
|
|
from users.models import CustomUser
|
|
|
|
|
|
|
|
class CustomUserAdmin(UserAdmin):
|
|
|
|
model = CustomUser
|
2024-12-11 20:46:20 -05:00
|
|
|
list_display = ['username', 'is_staff', 'is_active', 'image_display']
|
2024-09-06 19:50:19 -04:00
|
|
|
readonly_fields = ('uuid',)
|
2024-12-11 20:46:20 -05:00
|
|
|
search_fields = ('username',)
|
2024-07-08 11:44:39 -04:00
|
|
|
fieldsets = UserAdmin.fieldsets + (
|
2024-09-06 19:50:19 -04:00
|
|
|
(None, {'fields': ('profile_pic', 'uuid', 'public_profile')}),
|
2024-07-08 11:44:39 -04:00
|
|
|
)
|
|
|
|
def image_display(self, obj):
|
|
|
|
if obj.profile_pic:
|
2024-07-09 11:30:05 -04:00
|
|
|
public_url = os.environ.get('PUBLIC_URL', 'http://127.0.0.1:8000').rstrip('/')
|
|
|
|
public_url = public_url.replace("'", "")
|
|
|
|
return mark_safe(f'<img src="{public_url}/media/{obj.profile_pic.name}" width="100px" height="100px"')
|
2024-07-08 11:44:39 -04:00
|
|
|
else:
|
|
|
|
return
|
2024-07-21 09:03:25 -04:00
|
|
|
|
2024-08-15 19:36:42 -04:00
|
|
|
class AdventureImageAdmin(admin.ModelAdmin):
|
|
|
|
list_display = ('user_id', 'image_display')
|
|
|
|
|
2024-09-23 14:12:19 -04:00
|
|
|
def image_display(self, obj):
|
|
|
|
if obj.image:
|
|
|
|
public_url = os.environ.get('PUBLIC_URL', 'http://127.0.0.1:8000').rstrip('/')
|
|
|
|
public_url = public_url.replace("'", "")
|
2024-09-24 17:05:16 -04:00
|
|
|
return mark_safe(f'<img src="{public_url}/media/{obj.image.name}" width="100px" height="100px"')
|
2024-09-23 14:12:19 -04:00
|
|
|
else:
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
class VisitAdmin(admin.ModelAdmin):
|
|
|
|
list_display = ('adventure', 'start_date', 'end_date', 'notes')
|
|
|
|
list_filter = ('start_date', 'end_date')
|
|
|
|
search_fields = ('notes',)
|
|
|
|
|
|
|
|
|
2024-08-15 19:36:42 -04:00
|
|
|
def image_display(self, obj):
|
|
|
|
if obj.image: # Ensure this field matches your model's image field
|
|
|
|
public_url = os.environ.get('PUBLIC_URL', 'http://127.0.0.1:8000').rstrip('/')
|
|
|
|
public_url = public_url.replace("'", "")
|
|
|
|
return mark_safe(f'<img src="{public_url}/media/{obj.image.name}" width="100px" height="100px"')
|
|
|
|
else:
|
|
|
|
return
|
|
|
|
|
|
|
|
image_display.short_description = 'Image Preview'
|
2024-11-14 09:37:35 -05:00
|
|
|
|
|
|
|
class CategoryAdmin(admin.ModelAdmin):
|
|
|
|
list_display = ('name', 'user_id', 'display_name', 'icon')
|
|
|
|
search_fields = ('name', 'display_name')
|
2024-08-15 19:36:42 -04:00
|
|
|
|
2024-07-21 09:03:25 -04:00
|
|
|
class CollectionAdmin(admin.ModelAdmin):
|
|
|
|
def adventure_count(self, obj):
|
|
|
|
return obj.adventure_set.count()
|
|
|
|
|
|
|
|
adventure_count.short_description = 'Adventure Count'
|
|
|
|
|
|
|
|
list_display = ('name', 'user_id', 'adventure_count', 'is_public')
|
2024-07-08 11:44:39 -04:00
|
|
|
|
|
|
|
admin.site.register(CustomUser, CustomUserAdmin)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
admin.site.register(Adventure, AdventureAdmin)
|
2024-07-21 09:03:25 -04:00
|
|
|
admin.site.register(Collection, CollectionAdmin)
|
2024-09-23 14:12:19 -04:00
|
|
|
admin.site.register(Visit, VisitAdmin)
|
2024-07-08 11:44:39 -04:00
|
|
|
admin.site.register(Country, CountryAdmin)
|
|
|
|
admin.site.register(Region, RegionAdmin)
|
|
|
|
admin.site.register(VisitedRegion)
|
2024-07-27 19:04:55 -04:00
|
|
|
admin.site.register(Transportation)
|
2024-08-03 21:09:49 -04:00
|
|
|
admin.site.register(Note)
|
2024-08-05 16:09:57 -04:00
|
|
|
admin.site.register(Checklist)
|
|
|
|
admin.site.register(ChecklistItem)
|
2024-08-15 19:36:42 -04:00
|
|
|
admin.site.register(AdventureImage, AdventureImageAdmin)
|
2024-11-14 09:37:35 -05:00
|
|
|
admin.site.register(Category, CategoryAdmin)
|
2025-01-09 11:11:02 -05:00
|
|
|
admin.site.register(City, CityAdmin)
|
2025-01-09 12:38:29 -05:00
|
|
|
admin.site.register(VisitedCity)
|
2025-01-18 20:06:12 -05:00
|
|
|
admin.site.register(Attachment)
|
2024-07-08 11:44:39 -04:00
|
|
|
|
|
|
|
admin.site.site_header = 'AdventureLog Admin'
|
|
|
|
admin.site.site_title = 'AdventureLog Admin Site'
|
|
|
|
admin.site.index_title = 'Welcome to AdventureLog Admin Page'
|