On Mon, Sep 30, 2013 at 6:11 AM, Rafael E. Ferrero
wrote:
> I Dont know your design, usually i include the js library on base template
> and my apps templates extend from that... or just put another base template
> for every app...
>
> If you have some example code or tell us why you do that then
Sorry, I asked the question in the wrong group.
On 30 September 2013 17:41, Rafael E. Ferrero wrote:
> No Che!, no lo usé nunca... ni siquiera tenía idea de su existencia,
> igualmente veo muchas urls con la extensión PHP que no me hacen ninguna
> gracia :P
>
> Saludos !!
>
>
> 2013/9/30 Иван Зе
On Mon, 30 Sep 2013, Jasvir Singh wrote:
> Is it possible to install multiple versions of Django on single ubuntu server.
> If yes, please tell me how to do this.
@all, thanks for their help but my requirement is to use multiple
versions of django on single server. I have to use it apache web ser
Thanks, it worked.
Changing @override_settings(AUTH_USER_MODEL='auth.User') for
@override_settings(AUTH_USER_MODEL='auth.CustomUser') made the trick.
On Sun, Sep 29, 2013 at 9:09 PM, Russell Keith-Magee
wrote:
>
> On Mon, Sep 30, 2013 at 7:27 AM, Serge G. Spaolonzi
> wrote:
>>
>> Hi,
>>
>> I am
Hi, I have this same problem.
I'm looking for answer everywhere.
enemybass could implement?
If someone can help me with this
[] s
Em quarta-feira, 26 de setembro de 2012 05h33min24s UTC-3, enemybass
escreveu:
>
> https://github.com/bmentges/django-cart
>
> *I'm* a total *newbie* to *Django. *How
Thanks, I thought I checked this.
Marcin
On 30 September 2013 18:22, Daniel Roseman wrote:
> On Monday, 30 September 2013 18:18:00 UTC+1, Zoltan Szalai wrote:
>
>> try not to use the same value ('about') for the name attribute of the
>> textarea and your submit button.
>> not sure it helps th
That sounds cool, I would consider going if I lived in Vancouver.
On 09/30/2013 03:25 PM, Andy McKay wrote:
The Vancouver Python User Group and the Vancouver Django Meetup Group
are pleased to announce:
Vancouver Python Day
Saturday, November 16, 2013
SFU Harbour Centre
Part of Vancouver Deve
The Vancouver Python User Group and the Vancouver Django Meetup Group are
pleased to announce:
Vancouver Python Day
Saturday, November 16, 2013
SFU Harbour Centre
Part of Vancouver Developer Week 2013, Vancouver Python Day is a one-day
mini conference celebrating the Python Developer Community in
On Mon, Sep 30, 2013 at 4:55 PM, Berndt Jung wrote:
> Because the lookup_value of a null field is None, the validation check is
> aborted entirely. This seems wrong to me, and I'm wondering if I'm doing
> something wrong here. Redefining the models is not something I can do at
> this point.
N
Well, I may have answered my own question. It looks like per the SQL
standard NULL values are unique. Here from the postgres docs:
In general, a unique constraint is violated when there are two or more rows
in the table where the values of all of the columns included in the
constraint are equ
Hi,
I'm having trouble using the unique together constraint with a a field
which may be None. Given this model:
class Rule(models.Model):
internal = models.BooleanField(default=False)
port_range_from = models.PositiveIntegerField(null=True, blank=True)
port_range_to = models.Posit
On Monday, 30 September 2013 19:33:31 UTC+1, Okorie Emmanuel wrote:
> I have two problems
>
> 1. How can i populate the account
>information of each user, this
>what i have done but only info on
>user models populates, the info on extended
>field does not show on my template
>
Please try, django-userena, or django-registration,
both deal with userdetails.
Thx
Frank
Am 30.09.13 20:33, schrieb Okorie Emmanuel:
I have two problems
1. How can i populate the account
information of each user, this
what i have done but only info on
user models populates, the info
I have two problems
1. How can i populate the account
information of each user, this
what i have done but only info on
user models populates, the info on extended
field does not show on my template
# models.py
class Student(Models.model):
user = foreignkey(user)
On Monday, 30 September 2013 18:18:00 UTC+1, Zoltan Szalai wrote:
> try not to use the same value ('about') for the name attribute of the
> textarea and your submit button.
> not sure it helps the situation though.
>
>
I'd say that is the exact cause of the problem, actually.
--
DR.
--
You re
Hi, uwsgi is too good option http://uwsgi-docs.readthedocs.org/en/latest/ and
nginx with virtualenv
On Mon, Sep 30, 2013 at 11:45 AM, Peter Herndon wrote:
> I would suggest using separate virtual environments, each with gunicorn (
> http://gunicorn.org/) installed into the venv. Run gunicorn li
I would suggest using separate virtual environments, each with gunicorn
(http://gunicorn.org/) installed into the venv. Run gunicorn listening on a
different port per venv, start all your venvs under supervisord
(http://supervisor.org/), and proxy them behind nginx (http://wiki.nginx.org/).
On
On Mon, Sep 30, 2013 at 10:07 PM, Harjot Mann wrote:
> Here is the code to my view,
> http://tny.cz/57446220
> After filing form when I click on submit button , I am getting this
> error "SsupenceEditJob matching query does not exist" and not getting
I think it must be SuspenceEditJob.
--
Satin
try not to use the same value ('about') for the name attribute of the
textarea and your submit button.
not sure it helps the situation though.
On 2013.09.30. 19:13, Marcin Szamotulski wrote:
ps. If I render the form with
enctype='multipart/form-data'>
{{ form.as_ul() }}
I get the sam
ps. If I render the form with
{{ form.as_ul() }}
I get the same behaviour.
Marcin
On 30 September 2013 17:11, Marcin Szamotulski wrote:
> Sure here it is how the form is render:
>
>
> value='' />
>
> Submit
>
>
> Format:
>
> Text
>
Sure here it is how the form is render:
Submit
Format:
Text
reStructuredText
MarkDown
Profile image:
I use jinja2 template language and it is rendered with
{% csrf_token %}
{{ render_field(aboutform.about, label=
Here is the code to my view,
http://tny.cz/57446220
After filing form when I click on submit button , I am getting this
error "SsupenceEditJob matching query does not exist" and not getting
any values in database.
Help me please.
--
Harjot Kaur Mann
Blog: http://harjotmann.wordpress.com/
Daily Da
Virtual environments can, indeed, be used under Apache. I presume other
front ends can also handle this.
For Apache, the separate VE's need to be in separate deamon process groups,
so that their sys.path settings can differ.
The primary thing that virtualenv does for you is tweak sys.path, usual
Ahh got it , different versions in my installation.
Christian
Am Montag, 30. September 2013 16:54:43 UTC+2 schrieb Christian Schulz:
>
> Hi,
>
> has someboday a clue why I get this error.
> Without the modifications xadmin works fine, but if I copy for
> modifications in my ../templates/xadmi
Sorry please disregard I didn't read far enough into your message
On Mon, Sep 30, 2013 at 10:25 AM, Jasvir Singh wrote:
> Is it possible to install multiple versions of Django on single ubuntu
> server.
> If yes, please tell me how to do this.
> I have already made a try for this using virtual e
Yes, use something like VirtualEnv, it allows you to separate website
environments and requirements and it has nice additionals to help you
publish
On Mon, Sep 30, 2013 at 10:25 AM, Jasvir Singh wrote:
> Is it possible to install multiple versions of Django on single ubuntu
> server.
> If yes, p
Is it possible to install multiple versions of Django on single ubuntu server.
If yes, please tell me how to do this.
I have already made a try for this using virtual environment, but
found that it is only for development.
--
Jasvir Singh Grewal
Blog:http://jasvirsinghgrewal91.wordpress.com/
--
Hi
I'm having trouble with the South.
In the model below:
class Carrier (models.Model):
name = models.CharField (max_length = 40, blank = False, null = False,
verbose_name = 'Name')
user = models.ForeignKey (User, blank = True, null = True)
def save (self, force_insert
On Monday, 30 September 2013 15:41:47 UTC+1, Marcin Szamotulski wrote:
>
> I don't do anything odd: I simply modify it by typing in side textarea.
> The page has a very simple JavaScript which does not do anything with
> the textarea (though I double-checked that turning it off does not
> impro
Hi,
has someboday a clue why I get this error.
Without the modifications xadmin works fine, but if I copy for
modifications in my ../templates/xadmin/base_site.html
I got the error below.
If I cut this *if step* the template is loaded but without surprise in
fragile form. Has anybody an idea
On 06:38 Mon 30 Sep , Daniel Roseman wrote:
> On Sunday, 29 September 2013 22:58:38 UTC+1, Marcin Szamotulski wrote:
>
> > Dear Django users,
> >
> > The short question is: How to use Textarea widget with initial value?
> > The long version: I have a form with a simple Textarea widget
> >
>
well, you can always write the raw SQL querie...
https://docs.djangoproject.com/en/1.4/topics/db/sql/
On Sunday, September 29, 2013 10:16:47 PM UTC-5, Lachlan Musicman wrote:
>
> Hola,
>
> I have a inventory system with Parts and Part types. Part Types are
> Archetypes, parts are instances of Pa
No Che!, no lo usé nunca... ni siquiera tenía idea de su existencia,
igualmente veo muchas urls con la extensión PHP que no me hacen ninguna
gracia :P
Saludos !!
2013/9/30 Иван Земцов
> Всем привет!
> Кто нибудь обладает более подробной информацией по протоколу обмена чем
> тут ?
> http://v8.1
On Sunday, 29 September 2013 22:58:38 UTC+1, Marcin Szamotulski wrote:
> Dear Django users,
>
> The short question is: How to use Textarea widget with initial value?
> The long version: I have a form with a simple Textarea widget
>
> class Form(forms.Form):
>
> f = forms.CharField(widget=f
You can consider using Django Sekizai to manage your Javascript and CSS
imports:
https://django-sekizai.readthedocs.org/en/latest/
Hope that helps!
Best,
Dariel Dato-on
On Monday, September 30, 2013 1:12:54 AM UTC-5, dspruell wrote:
>
> Spent a bit of time debugging some faulty JavaScript libr
Всем привет!
Кто нибудь обладает более подробной информацией по протоколу обмена чем тут
?
http://v8.1c.ru/edi/edi_stnd/131/
Может у кого-то есть какая-нибудь реализация данного протокола?
--
С уважением, Иван
--
You received this message because you are subscribed to the Google Groups
"Djang
Have you said which version of Django you are using? (If so, it slipped
past me.)
Is this all code that you wrote yourself, or did you copy some or all it
from somewhere?
If copied, under what version of Django was it being used?
Have you gone through and understood the tutorial for the version
I Dont know your design, usually i include the js library on base template
and my apps templates extend from that... or just put another base template
for every app...
If you have some example code or tell us why you do that then we be more
helpfull
See ya
2013/9/30 Darren Spruell
> Spent a
38 matches
Mail list logo