mixins.py 313 B

123456789
  1. from django.core.urlresolvers import reverse
  2. from django.shortcuts import redirect
  3. class TypeMixin(object):
  4. templates_prefix = 'threads'
  5. thread_url = 'thread'
  6. def threads_list_redirect(self):
  7. return redirect(reverse('forum', kwargs={'forum': self.forum.pk, 'slug': self.forum.slug}))