Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

middleware.py 334B

123456789101112
  1. from . import strategy
  2. class StrategyMiddleware(object):
  3. """
  4. Responsible for assigning the appropriate stockrecord
  5. strategy instance to the request
  6. """
  7. def process_request(self, request):
  8. # Default to picking the first available stockrecord
  9. request.strategy = strategy.FirstStockrecord(request)