Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は、投稿を作成するときに「匿名」オプションを使用して電子メールを非表示にすることを選択したときにcraigslistが行うことと同様のdjangoアプリケーションに取り組んでいます。これと似たようなことをすでに行っているpythonパッケージはありますか?
パッケージはやり過ぎです。匿名フラグ付きのモデルを使用しないのはなぜですか?
class Item(models.Model): user = models.ForeignKey(User) anonymous = models.BooleanField() def get_email(self): return "Anonymous" if self.anonymous else self.user.email