I build Review Board (<a href="https://www.reviewboard.org/" rel="nofollow">https://www.reviewboard.org/</a>, <a href="https://github.com/reviewboard/reviewboard" rel="nofollow">https://github.com/reviewboard/reviewboard</a>), an open source code review tool built on top of Django. It used to be a side project to fill what was at that time a gap in code review offerings (not even GitHub was around at this time), but these days it's a full-time job.<p>Like @encoderer and Cronitor.io, we also stuck with Django 1.6 for several years! YAY! Turns out the jump from 1.6 to 1.7 was a painful experience, but we're finally on the modern.... 1.11. Yeah, we're not getting rid of our Python 2.7 customers for some time (still trying to get some off of Python 2.6). Enterprise software development is a different sort of beast.<p>Our <a href="https://rbcommons.com" rel="nofollow">https://rbcommons.com</a> service is Review Board as a SaaS, and uses Stripe. Curious to hear what you're doing with Stripe integration on your end! We've been making heavy use of it ourselves.<p>We've also done some crazy, fairly-complex, maybe-niche stuff in Django, and built these out into some libraries you might find interesting to browse through:<p>1) Djblets (<a href="https://github.com/djblets/djblets" rel="nofollow">https://github.com/djblets/djblets</a>) — A big ol' utility library for Django that provides:<p>* Foundations for loadable extensions (just like browser extensions) for Django projects<p>* Support for defining flexible integrations for third-party services (Slack, etc.)<p>* Avatar support (gravatars, file uploads, URL-based avatars, and custom backends)<p>* Datagrids (with user column customization)<p>* A foundation for REST APIs<p>* Dynamic site settings<p>* Stuff to make privacy/PII/consent a first-class citizen in codebases<p>* And just a ton of other things that we found useful in Review Board and wanted to make more widely-available.<p>2) Django Evolution (<a href="https://github.com/beanbaginc/django-evolution" rel="nofollow">https://github.com/beanbaginc/django-evolution</a>) — A precursor to Django's migrations support (and the reason we were on Django 1.6 for so long — the in-development version cooperates with migrations now). We inherited and maintain this project. It provides an alternate way to specify database schema changes, and has the benefit of just being far faster to apply migrations, through a built-in optimizer. This <i>significantly</i> reduces upgrade times for large installs (super important for many of our Review Board customers).<p>All open source, and might be interesting to look at, who knows. We've built a lot up over the years (we started by writing code against Django pre-1.0 SVN checkouts), and I still recommend it.