For those who have used django-authopenid [1], can you tell me if it
interferes with the built-in django user authentication system (users,
permissions, groups, etc). I am going to attempt to get it running on
a small project, but I won't bother if it interferes with auth.
Thank you in advance f
Make sure that you have the CSRF middleware installed.
On Nov 3, 2009 12:09 PM, "Todd Blanchard" wrote:
What did I screw up?
TemplateSyntaxError at /polls/1/
Invalid block tag: 'csrf_token'
Request Method:GETRequest URL:http://localhost:8000/polls/1/Exception Type:
TemplateSyntaxErrorException
When I run into similar situations with regards to flow, interface, I try
to approach from a different angle.
In this case, where you have different checks (before they can create an
Event, the venue must exist, etc.) I line those up first.
- Create event view, select Venue.
- If venue does not e
Hello,
I was hoping that some of the list members who have experience
building HIPAA-compliant (or SOX-compliant) django apps could share
some of their experiences. We are beginning to research possibly
implementing some internal apps in our department, but of course
working with patient data requ
On Wed, Jul 21, 2010 at 1:37 PM, Juan Hernandez wrote:
> Hey there,
> I have been working a lot with request.is_ajax() to handle forms and the
> results have been great so fat yet, I have a question about good practices
> and best uses for this function.
> Lets say that I executed a function that
On Fri, Aug 13, 2010 at 11:11 PM, Kevin wrote:
> I tried to build the Django docs and got an error.
>
> $ cd django/docs/
> $ make html
> sphinx-build -b djangohtml -d _build/doctrees . _build/html
> Running Sphinx v1.0.1
> loading pickled environment... not yet created
> building [djangohtml]:
I'll just point out that the jQuery Autocomplete plugin is included (will be
included) in the next jQueryUI release. I think it's been pretty easy to
hook into views
On Feb 15, 2010 6:00 AM, "Massimiliano della Rovere" <
massimiliano.dellarov...@gmail.com> wrote:
I'd use http://dajaxproject.com/
On Sat, Mar 27, 2010 at 9:29 PM, David Hollander wrote:
> Hello. I am making a restaurant site with some visually candy that
> will load all new subpages via AJAX. And also load pages normally
> without AJAX if javascript is disabled.
>
> Ideally, I want to do:
>
> {% if not ajax %}
> {% extend
On Wed, Feb 15, 2012 at 10:48 PM, Scott wrote:
> Hello,
> I'm having a strange issue and have already spent an hour trying to
> figure it out.
>
> I created a python app called mn. Then I setup all my models and
> stuff to work under mn.hcp. Everything has been working fine until I
> tried to us
On Thu, Feb 16, 2012 at 9:20 AM, Scott Macri wrote:
> DrBloodmoney I not sure what you mean by circular imports. datetime
> is the only import I have in this file.
Here are examples of circular import problems [1][2]
I am forever getting bitten by them, so it's become one of the f
On Fri, Aug 19, 2011 at 9:27 AM, Andre Terra wrote:
> Alright, do what you will. Whatever floats your boat..
>
> On Fri, Aug 19, 2011 at 5:12 AM, Matt Schinckel wrote:
>>
>> On Friday, August 19, 2011 12:07:44 PM UTC+9:30, Andre Terra (airstrike)
>> wrote:
>>>
>>> Until you install some third par
On Fri, Sep 9, 2011 at 12:02 PM, Brett Hutley wrote:
> You need to add it to the registration_form.html as well.
>
> Make sure you have 'django.middleware.csrf.CsrfViewMiddleware', in the
> MIDDLEWARE_CLASSES tuple in the settings.py file.
>
> Cheers, Brett
>
> On 9 Sep 2011, at 16:47, nicolas H
On Sat, Sep 17, 2011 at 7:47 AM, Reikje wrote:
> Okay I am having some troubles getting this to work. In my application
> I am using WebTest and django-webtest to do template testing. In order
> to monkeypatch the django.core.urlresolvers.reverse function, I have
> created a new Test base that loo
On Fri, Sep 16, 2011 at 8:54 PM, Tim Chase
wrote:
> Just returning to some Django work after a time away, I (re)started an old
> project in 1.3 and hit an early issue. I'd like to keep my settings.py
> under revision-control that is somewhat publicly accessible, but don't want
> my SECRET_KEY exp
On Tue, Sep 20, 2011 at 1:55 AM, adrian s wrote:
> Hi all, I've been using virtualenv as recommended in my development
> environments.
> I am now migrating a project which was not using virtualenv, to another
> server and now
> have the opportunity to use it in production.
> I've spent a while goo
On Tue, Sep 20, 2011 at 11:46 AM, Fabio Natali wrote:
> Hi everybody!
>
> I have a very simple view which is supposed to print out GET or POST,
> depending which has been used to send data. The problem is I always get
> "GET" even when sending data via POST.
>
> ### views.py:
> def method(request)
On Thu, Sep 22, 2011 at 12:30 PM, Micky Hulse wrote:
> On Thu, Sep 22, 2011 at 8:54 AM, Simon Connah
> wrote:
>> So do you just tend to create a new misc app to hold all these little bits
>> and pieces or is there a convention for such things?
>
> For a few projects at work, we use a "global"
On Thu, Sep 22, 2011 at 11:14 AM, Kurtis wrote:
> Hey,
>
> I'm trying to figure out the best way to do this. I have a FormView
> and an associated Form. In my Form, I take care of all of the
> validation and cleaning as far as the input goes.
>
> However, I need to put in some more logic such as s
Personally I think get_profile() is an anti-pattern, just access it
like any other OneToOneField (and that's what you want... not
unique=True on a ForeignKey). Just set up a models.OneToOneField(User,
related_name=XXX), then you can access the profile as user.XXX. The
User model and all of its asso
Well if it is IE then you can do conditional commenting for IE to detect itself:
css
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send emai
On Tue, Nov 22, 2011 at 6:54 PM, Nolhian wrote:
> Hello,
>
> I've got a subscription form and this view :
>
> def index(request):
> c = RequestContext(request)
> if request.user.is_authenticated():
> return render_to_response('index.html', {'has_account': True})
>
On Wed, Nov 23, 2011 at 2:01 PM, Jeff Heard wrote:
> I have several django apps. all of which are in separate packages and can be
> installed seperately. I would like them all to be sub-packages of a master
> package named "ga" So:
> ga.datacube
> ga.pyramid
> ga.sensorcollection
> and so on. T
> If I don't check anywhere in the view if a user is authenticated, he
> can still use the form to post data and my goal is that if a user is
> authenticated he can't ( in the template if a user is authenticated it
> doesn't display the form ).
> I'm aware that it kind of defy the DRY principle bec
On Tue, Nov 29, 2011 at 2:19 PM, Nolhian wrote:
> Thanks you for your answer, yes I plan on using different models for
> the lookups. But I'm confused, is that a yes to my question, Lists/
> dicts are the way to go here ?
I would not do it that way. Seems incredibly brittle and you are
mixing up
On Tue, Nov 29, 2011 at 3:05 PM, Andre Lopes wrote:
> I'm trying to serve a Django application to production. I have
> installed Gunicorn and now I need to setup a Nginx Virtual Host. I'm
> kind of lost on how to configure the "virtual.conf" from Nginx. I just
> want to use Nginx as proxy, I don't
On Tue, Nov 29, 2011 at 3:37 PM, Nolhian wrote:
> Thanks !
>
> So you'll not check if the category/item exists ( if a user enter a
> bad url ), you'll just hit the database to check if it does in fact
> exists ?
No I don't know what your business logic for the view/model would be.
I was just show
On Wed, Nov 30, 2011 at 9:35 AM, Andre Lopes wrote:
> Hi,
>
> I'm serving to production a Django website with Nginx + Gunicorn with
> virtualenv.
>
> My dumb question is: I must to install supervisord in my virtualenv or
> outside my virtualenv?
You should just install supervisord to your system
On Wed, Nov 30, 2011 at 7:43 PM, jim wrote:
> I'm trying to use request.POST.copy() to get a hidden field in an html
> template. The hidden field looks like:
>
>
>
> I also tried:
>
>
>
> In my view.py I have:
>
> postdata = request.POST.copy()
> url = str(postdata.get('url'))
>
> Th
On Thu, Dec 1, 2011 at 5:59 AM, Nikhil Verma wrote:
>
> Hi all,
>
> I want to add my django project directory path to PYTHONPATH. I am a newbie
> in ubuntu 11.10
> Please tell me step by step. When i do
import sys
sys.path.append(''project_directory path")
> It does append but not permanen
On Sun, Dec 18, 2011 at 4:25 PM, Abraham Yusuf wrote:
> Hi all,
> I'm trying to login a user using django's authentication backend with the
> following:
> user=auth.authenticate(userid,pass)
> if user:
> if user.is_active:
> auth.login(request,user)
> I am getting TypeError login() takes e
On Wed, Jan 4, 2012 at 5:33 AM, Martin Tiršel wrote:
> Hello,
>
> I have a list of items (from a model) I want to display with checkboxes (for
> deleting multiple objects at once). The same behaviour like in django admin
> (change list). I can do such thing in templates:
>
> {% for item in item_li
On Wed, Apr 20, 2011 at 11:48 AM, Daniel Gagnon wrote:
> So far, I have the following code:
> from django.forms.widgets import TextInput
> from django.forms.fields import Field
> class AutoCompleteWidget(TextInput):
> def render(self, name, value, attrs=None):
> if hasattr(value, 'name
nstead of passing
> object.id ?
> On Wed, Apr 20, 2011 at 12:17 PM, DrBloodmoney
> wrote:
>>
>> On Wed, Apr 20, 2011 at 11:48 AM, Daniel Gagnon
>> wrote:
>> > So far, I have the following code:
>> > from django.forms.widgets import TextInput
>> &
On Wed, Apr 20, 2011 at 12:45 PM, Daniel Gagnon wrote:
> Sure, here's a minimal version of them (I skipped fields that aren't too
> relevant to the problem at hand because there's many, including tons of
> foreign keys):
> class Target(Model):
> name = CharField("Target Name", max_length=255,
On Fri, May 6, 2011 at 12:36 AM, Phui-Hock wrote:
> On May 6, 4:22 am, Shawn Milochik wrote:
>> This is a bad idea for multiple reasons. Don't do it.
>
> Huh, care to explain, please?
Please Please Please do not send plain text passwords via email. Please.
--
You received this message because
On Wed, May 25, 2011 at 12:54 PM, Amit Sethi wrote:
> Hi all , I might be wrong with some of the concepts as I am new to
> south. I am using south to migrate some fixture data for a django app.
> Also something worth noting is I am bringing south new into the django
> app it was not part of instal
On Wed, May 25, 2011 at 9:31 AM, DK wrote:
> 100% south migration :)
This.
I know that they have said that they weren't going to be putting South
into django (contrib?), but I wish they would. Most django devs should
be using it.
--
You received this message because you are subscribed to the Go
Yeah. That was the post I was thinking about. For some reason I
thought that it came from the core dev team. I still think that
migrations should be a part of a full-stack framework like django
(south is the first app I install in a new project). They might as
well pick the best-in-breed and throw
On Tue, May 31, 2011 at 12:55 PM, Marc Aymerich wrote:
> Hi!,
> I'm writing an admin action.
> This action needs to collect some information before execute the "final
> task".
> In order to collect this information the user should fill 3 consecutive
> forms, (once they submitted one, another is re
On Thu, Jun 9, 2011 at 9:16 AM, Malcolm Box wrote:
> On 9 June 2011 08:09, Thomas Guettler wrote:
>>
>> My static files (JS/CSS) are cached in the browser. But if there is a bug
>> in a file, an update won't help people which have already cached the old
>> file.
>>
>> You would need a new URL for
On Mon, Jun 20, 2011 at 3:52 PM, Nan wrote:
> I'm not testing the third-party service. I need to test *what I send
> to them*. I.e. that the output of my_view is correct. The trouble is
> that neither my_view nor the API call actually returns the output that
> I need to check.
>
> Does that mak
On Mon, Jun 20, 2011 at 5:16 PM, raj wrote:
> Sorry, can you give me more details. What other things would I have to
> do to make these changes? thank you.
>
> On Jun 20, 3:08 am, Kenneth Gonsalves wrote:
>> On Mon, 2011-06-20 at 00:03 -0700, raj wrote:
>> > Ya i got that working. Just another qu
On Sat, Jul 2, 2011 at 10:14 AM, Soviet wrote:
> Hello
> I need to set up EC2 instance to run Django+Python+PostgreSQL+Apache
> +Solr+nginx+Mercurial etc. This is all black magic for me - I was only
> using shared hosting like webfaction, where everything is dumb-
> friendly :). But you know, "the
On Mon, Jul 4, 2011 at 2:22 PM, Petite Abeille wrote:
>
> On Jul 4, 2011, at 8:08 PM, leo wrote:
>
>> what i want is
>
> To quote the friendly manual:
>
> "When you do want to insert a break tag using Markdown, you end a line
> with two or more spaces, then type return."
>
> http://daringfirebal
On Wed, Jul 6, 2011 at 3:31 AM, i...@webbricks.co.uk
wrote:
> oh yeah
> http://www.saltycrane.com/blog/2009/05/notes-using-pip-and-virtualenv-django/
>
> that page is my goto reference on building a virtualenv, you might
> have already found it, but if not...
>
> On Jul 5, 10:28 pm, Jeremy wrote:
On Thu, Jul 7, 2011 at 12:04 AM, Venkatraman S wrote:
> I am doing some bechmarking on the performance of both the versions of the
> query:
> 1.
> Item.objects.filter(created_by__employees__org__in=u.employees_set.all().values_list('org'))
> and
> 2. Items.objects.extra(where=['created_by_id in (s
I think that you would probably have better luck coming at it from the
other end. That is, in the database itself (stored procedure or
otherwise).
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@
On Mon, Jul 25, 2011 at 5:47 AM, Vignesh Sunder
wrote:
> Hi. I was just curious to know about the logout functionality of
> OAuth..When a User logs out from the Consumer (After 3-legged OAuth
> login) site, the User's session happens to get flushed. But I believe
> this happens only on the Consume
On Mon, Aug 1, 2011 at 1:12 AM, Chris Seberino wrote:
> My Django app only allows someone to access a /books page, that is
> part of the Django app, if they are signed in.
>
> The pages below that URL are just static directory listings of PDFs
> all handled by Apache.
> For example /books/book_1,
On Mon, Aug 1, 2011 at 3:51 PM, Chris Seberino wrote:
>
>
> On Aug 1, 7:11 am, DrBloodmoney wrote:
>> You can look into protecting them with mod_xsendfile for Apache
>
> Thanks. I'll look into that. Is there no way to have a view hand off
> a page to Apache?
L
50 matches
Mail list logo