As others have replied, one option is to use a profile class. Although Django has the concept of a UserProfile, this is being deprecated; but the broader idea -- a separate table with a OneToOneKey to the User model -- is still valid.
In Django 1.5 (due for release any week now), you can define your own custom User model. If you're happy with the base Django User, and just want to add a couple of fields, you can extend an AbstractUser base class and add your own fields.
Which one is the better option? That's really up to you. The more you put on your User model, the less reusable your code will be. However, putting data into separate tables will incur a retrieval cost.
One way to answer this question is to ask the purpose of the boolean fields you want to add. Are these extra fields essential properties of what it means to be a User in your project, or are they descriptions of how one particular application will interact with a User object. If they're fundamental properties of a User, a custom User object may be appropriate. If they're the latter, a profile object may be a better approach.
However, ultimately, only you can confirm which approach is best for your own project.
Yours,
Russ Magee %-)