I am trying to create multi Model Left join using django
Here is my model
class LookupTiming(models.Model):
day = models.CharField(max_length=7)
time_1 = models.TimeField()
time_2 = models.TimeField()
class Meta:
db_table = u'lookup_timing'
class Streets(models.Model):
Hi all!
I'm have the following models:
Class A(models.Model):
pass
Class Z(models.Model):
pass
Class B(models.Model):
a = models.ForeignKey(a)
z = models.ForeignKey(Z)
def __unicode__(self):
return self.z
Class C(models.Model):
b = models.Fore
Hi. Don't know if this is specific to Django, but my site is the only one
I've experienced this with, and I don't think I'm doing anything special
with session data (just using the old-school database backend).
When a user logs in (in tab A) and opens a new tab (tab B) on the same
domain, the c
Have you set any middleware that allows only one session at a time?
On Mon, Apr 7, 2014 at 6:48 PM, Mark Steadman wrote:
> Hi. Don't know if this is specific to Django, but my site is the only one
> I've experienced this with, and I don't think I'm doing anything special
> with session data (ju
Hi,
I wonder if anyone knows of any example of django-dynamic-formsets [1] that
works with Django 1.6?
So far all I found on the internet are over 3 years old and they don't work
with Django version 1.6.
I am willing to pay for any example that works if necessary. :)
Thanks in advance,
Le
The project was migrated to another repository:
https://github.com/elo80ka/django-dynamic-formset
2014-04-07 13:13 GMT-04:00 Leandro Alves :
> Hi,
>
> I wonder if anyone knows of any example of django-dynamic-formsets [1]
> that works with Django 1.6?
>
> So far all I found on the internet are
thanks guys,
i'm going to try a few, but django-pq looks very promising.
cheers,
Vid
On Mon, Apr 7, 2014 at 1:53 AM, Russell Keith-Magee wrote:
> Hi,
>
> Another option to throw onto the pile:
>
> https://github.com/bretth/django-pq
>
> This was recommended to me by Jannis Leidel (jezdez)
Yes.. I have tried that one as well.. but the example still doesn't work...
=/
Any freelance available for this?
Thanks for the feedback!
Leandro
On Mon, Apr 7, 2014 at 7:33 PM, Gladson Simplício Brito <
gladsonbr...@gmail.com> wrote:
> The project was migrated to another repository:
>
> http
Try these:
https://pypi.python.org/pypi?%3Aaction=search&term=formset&submit=search
If not, tell your need.
:D
2014-04-07 14:16 GMT-04:00 Leandro Alves :
> Yes.. I have tried that one as well.. but the example still doesn't
> work... =/
>
> Any freelance available for this?
>
> Thanks for the f
Brother, I think I have tried all of those already and some other around
the internet...
I couldn't find anyone that works with Django 1.6.
I will send you an email with what I need, ok? :)
Thanks again!
Leandro
On Monday, April 7, 2014 8:43:06 PM UTC+2, Gladson Simplício Brito wrote:
>
>
Hi,
I have a form wizard view with 2 required forms & 1 optional form in it.
I'm seeing an occasional error during submission. Here's my named forms:
DONATE_FORMS = [("donate", DonateFormItemInformation), ("delivery",
DonateFormDeliveryMethod), ("about", DonateFormAbout)]
My URL entry:
login_
Okay, send email here:
glad...@immensa.com.br
2014-04-07 15:24 GMT-04:00 Leandro Alves :
> Brother, I think I have tried all of those already and some other around
> the internet...
> I couldn't find anyone that works with Django 1.6.
>
> I will send you an email with what I need, ok? :)
>
> Th
Done. :)
Thanks!!!
On Monday, April 7, 2014 9:42:53 PM UTC+2, Gladson Simplício Brito wrote:
>
> Okay, send email here:
>
> gla...@immensa.com.br
>
>
> 2014-04-07 15:24 GMT-04:00 Leandro Alves >:
>
>> Brother, I think I have tried all of those already and some other around
>> the internet...
or just use freenode webchat
On Wed, Apr 2, 2014 at 1:59 PM, Aaron C. de Bruyn wrote:
> Take a look at this:
>
> http://www.wikihow.com/Register-a-User-Name-on-Freenode
>
> If you still get stuck, let us know.
>
> -A
>
>
> On Wed, Apr 2, 2014 at 1:43 PM, John Draper wrote:
>>
>> I go to Adium --
On Mon, Apr 7, 2014 at 3:04 PM, Emanuel wrote:
> Hi all!
>
> I'm have the following models:
>
> Class A(models.Model):
> pass
>
>
> Class Z(models.Model):
> pass
>
>
> Class B(models.Model):
> a = models.ForeignKey(a)
> z = models.ForeignKey(Z)
>
>def __unicode__(self)
Hi Camilo,
I really appreciate your response.
I had another go at this last night, particularly trying to use the
add(component()) snippet.
To respond to your notes:
1. I simplified and used a find-replace to replace the model names which is
likely why it dosn't compile, sorry about that. Mine c
Have you tried the jquery formset - works like a breeze for me.
On Mon, Apr 7, 2014 at 10:43 PM, Leandro Alves wrote:
> Hi,
>
> I wonder if anyone knows of any example of django-dynamic-formsets [1]
> that works with Django 1.6?
>
> So far all I found on the internet are over 3 years old and th
Hello,
This works for me, saving the related objects in the many to many
relationship. You can start from there to build yours:
models.py:
class Student(models.Model):
name = models.TextField()
class Course(models.Model):
name = models.TextField()
students = models.ManyToManyField
Hi,
I'm hacking up a system to manage attendees at a camp.
I have a Person model (which might be better as a customer UserModel, still
not sure).
There are multiple types of people - e.g. camp attendees, staff,
supervisors etc.
Each person that is a camp attendee will also have an "Attendance
19 matches
Mail list logo