[ Launch: boomstick_motion_wcolor_coffee ] 9378273 by andybak[ Launch: boomstick_motion_wcolor_coffee ] 9378103 by andybak
[ Launch: boomstick_motion_wcolor_coffee ] 9385505 by andybak[ Launch: boomstick_motion_wcolor_coffee ] 9378273 by andybak[ Launch: boomstick_motion_wcolor_coffee ] 9378103 by andybak
[ Launch: Circles05 ] 9413647 by andybak[ Launch: boomstick_motion_wcolor_coffee ] 9385505 by andybak[ Launch: boomstick_motion_wcolor_coffee ] 9378273 by andybak[ Launch: boomstick_motion_wcolor_coffee ] 9378103 by andybak
[ Launch: Circles06 ] 9413722 by andybak[ Launch: Circles05 ] 9413647 by andybak[ Launch: boomstick_motion_wcolor_coffee ] 9385505 by andybak[ Launch: boomstick_motion_wcolor_coffee ] 9378273 by andybak[ Launch: boomstick_motion_wcolor_coffee ] 9378103 by andybak
[ Launch: Circles07 ] 9413822 by andybak[ Launch: Circles06 ] 9413722 by andybak[ Launch: Circles05 ] 9413647 by andybak[ Launch: boomstick_motion_wcolor_coffee ] 9385505 by andybak[ Launch: boomstick_motion_wcolor_coffee ] 9378273 by andybak[ Launch: boomstick_motion_wcolor_coffee ] 9378103 by andybak
[ Launch: Circles08 ] 9413869 by andybak[ Launch: Circles07 ] 9413822 by andybak[ Launch: Circles06 ] 9413722 by andybak[ Launch: Circles05 ] 9413647 by andybak[ Launch: boomstick_motion_wcolor_coffee ] 9385505 by andybak[ Launch: boomstick_motion_wcolor_coffee ] 9378273 by andybak[ Launch: boomstick_motion_wcolor_coffee ] 9378103 by andybak
[ Launch: Circles09 ] 9413931 by andybak[ Launch: Circles08 ] 9413869 by andybak[ Launch: Circles07 ] 9413822 by andybak[ Launch: Circles06 ] 9413722 by andybak[ Launch: Circles05 ] 9413647 by andybak[ Launch: boomstick_motion_wcolor_coffee ] 9385505 by andybak[ Launch: boomstick_motion_wcolor_coffee ] 9378273 by andybak[ Launch: boomstick_motion_wcolor_coffee ] 9378103 by andybak
| self.children.append(modules.LinkList( | |
| _('Quick links'), | |
| layout='inline', | |
| draggable=False, | |
| deletable=False, | |
| collapsible=False, | |
| children=[ | |
| [_('Product Search'), reverse('booking_screen')], | |
| [_('Customer Accounts'), '/admin/crm/account/'], | |
| [_('Change password'), |
| class HireVolumeChart(BaseChart): | |
| title = _('Hire Volume') | |
| template = 'admin_user_stats/modules/chart.html' | |
| chart_size = "580x200" | |
| values_count = 3 #use either days or values_count | |
| interval = 'days' | |
| queryset = BookingStockItem.objects.all() | |
| date_field = 'booking__estimated_dispatch' | |
| aggregate = Sum('quantity') |
| from datetime import datetime | |
| from django.template import RequestContext | |
| from django.shortcuts import render_to_response | |
| from django.http import Http404, HttpResponsePermanentRedirect | |
| from cms.models import Page | |
| unique = True | |
| can_use_extra_url = True |