This is not the best example, but you can see a more specialized auth backend here:
https://github.com/reviewboard/rb-extension-pack/blob/master/rbdemo/rbdemo/auth_backends.py You probably want something more like: from reviewboard.accounts.backends import LDAPBackend class MyLDAPBackend(LDAPBackend): backend_id = 'my-ldap-backend' login_instructions = '...' You can use AuthBackendHook to register an auth backend, like in: https://github.com/reviewboard/rb-extension-pack/blob/master/rbdemo/rbdemo/extension.py Christian -- Christian Hammond - [email protected] Review Board - https://www.reviewboard.org Beanbag, Inc. - https://www.beanbaginc.com -----Original Message----- From: Dunnigan, Terrence J <[email protected]> Reply: [email protected] <[email protected]>> Date: March 20, 2015 at 1:31:11 PM To: [email protected] <[email protected]>> Subject: RE: Change login page text? > Thanks! > > From: [email protected] [mailto:[email protected]] On > Behalf Of Scott Quesnelle > Sent: Friday, March 20, 2015 3:17 PM > To: [email protected] > Subject: Re: Change login page text? > > Look under your reviewboard site-packages directory. > > reviewboard/templates/accounts > > File is called login.html > This is the template file that is used to generate the html that is rendered. > Recommend > you do a quick read on django beofre editing, but its pretty self describing. > > Scott > > On Thu, Mar 19, 2015 at 10:35 AM, Dunnigan, Terrence J > > wrote: > Hi all, > > I’m using Review Board 1.7.27. I’d like to replace the login page text with > my own custom > text (and possibly a hyperlink…fancy! ☺). How can I do this? > > Currently it says: > > “Log in with your standard username and password > > There's no need to register a new account. Your standard username and > password should > work fine.” > > Is this easy to do? Is it easier to do if I upgrade to a newer version? > > Thanks, > > Terry > -- > Supercharge your Review Board with Power Pack: > https://www.reviewboard.org/powerpack/ > Want us to host Review Board for you? Check out RBCommons: > https://rbcommons.com/ > Happy user? Let us know! https://www.reviewboard.org/users/ > --- > You received this message because you are subscribed to the Google Groups > "reviewboard" > group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > > -- > Supercharge your Review Board with Power Pack: > https://www.reviewboard.org/powerpack/ > Want us to host Review Board for you? Check out RBCommons: > https://rbcommons.com/ > Happy user? Let us know! https://www.reviewboard.org/users/ > --- > You received this message because you are subscribed to the Google Groups > "reviewboard" > group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > > -- > Supercharge your Review Board with Power Pack: > https://www.reviewboard.org/powerpack/ > Want us to host Review Board for you? Check out RBCommons: > https://rbcommons.com/ > Happy user? Let us know! https://www.reviewboard.org/users/ > --- > You received this message because you are subscribed to the Google Groups > "reviewboard" > group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- Supercharge your Review Board with Power Pack: https://www.reviewboard.org/powerpack/ Want us to host Review Board for you? Check out RBCommons: https://rbcommons.com/ Happy user? Let us know! https://www.reviewboard.org/users/ --- You received this message because you are subscribed to the Google Groups "reviewboard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
