Re: Project together

2023-12-06 Thread Apili Vicky
Am interested too On Thursday, November 23, 2023, Youssef Bachraoui < bachraouiyouss...@gmail.com> wrote: > Hi developer i search to make a group on WhatsApp to begin a project > together anyone interested about that? > > -- > You received this message because you are subscribed to the Google

Hello everyone,happy to be here.

2023-06-29 Thread Apili Vicky
am failing to get apython path on the cmd interface..what could be wrong -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Add events to user calendar software

2009-04-22 Thread vicky
Hi, I am new in django. I need to update events from my website to outlook, Google, yahoo calendars. I have implemented some code from vObject which download ".ics" file which is OK for outlook. I don't know how to update event in Google and yahoo calendar. I need functionality like shown in

Add events to user calendar software

2009-04-22 Thread vicky
Hi, I am new in django. I need to update events from my website to outlook, Google, yahoo calendars. I have implemented some code from vObject which download ".ics" file which is OK for outlook. I don't know how to update event in Google and yahoo calendar. Please help me.

Re: Converting from local DST to UTC

2009-04-22 Thread vicky
On Apr 15, 10:04 pm, Jamie wrote: > On Apr 14, 9:34 pm, Brian Neal wrote: > > > This is how I am doing it (I'm also integrating with Google Calendar): > > > tz = pytz.timezone(tz_name)  # create timezone > > local = tz.localize(d)  # make naive datetime

Re: Auto increment in model primarykey

2009-04-21 Thread Vicky
> > > On Apr 21, 3:48 pm, Vicky <vicky87@gmail.com> wrote: > > > I have a table with an 'id' field (Primary Key). When I insert the > > > data using admin interface it is asking me for the value of the > > > primary key field. But I want it to be filled a

Auto increment in model primarykey

2009-04-21 Thread Vicky
I have a table with an 'id' field (Primary Key). When I insert the data using admin interface it is asking me for the value of the primary key field. But I want it to be filled automatically. Is there a way to do it? --~--~-~--~~~---~--~~ You received this message

Django too slow

2009-01-07 Thread Vicky
I using the django to generate xml and to fetch datas from database. When i run it the response is too slow. it takes nearly 4sec to load the page. So what can i do to make my program more efficient. Plse tell me some things to avoid so that it becomes faster

models problem

2009-01-06 Thread Vicky
Some datas in my database are missing when i view it using models.Am using MYSql db. The datas that are in database when viewing using querry browser where not seen when using model to access database. can anyone help --~--~-~--~~~---~--~~ You received this message

Re: enumerate in templates

2008-12-29 Thread Vicky
command like below is not working... can u suggest a way?? {% for node in nodes %} {% ifequal nodes[(forloop.counter0)-1].node_type '2' %} On Dec 29, 9:21 am, Vicky <vicky87@gmail.com> wrote: > ya that's what i need :) thanks a lot :) :) > > On Dec 28, 8:06 pm,

Template IDE

2008-12-28 Thread Vicky
how can we debug errors in templates? Are there any IDE for this? --~--~-~--~~~---~--~~ 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

Variables in templates

2008-12-28 Thread Vicky
Is there any way to create a variable within the templates...? --~--~-~--~~~---~--~~ 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

Re: enumerate in templates

2008-12-28 Thread Vicky
ya that's what i need :) thanks a lot :) :) On Dec 28, 8:06 pm, Daniel Roseman <roseman.dan...@googlemail.com> wrote: > On Dec 27, 6:20 am, Vicky <vicky87@gmail.com> wrote: > > > Is there a way to access the previous value of a for loop in > > templates

ImportError

2008-12-25 Thread Vicky
I am having a model in my application. I tried to get the values form shell by typing: from x.models import datasets but its giving an error: Traceback (most recent call last): File "", line 1, in ? ImportError:

posting data to url

2008-12-24 Thread Vicky
i used this code to send more than one data to url: http://local/www/app/data/id=1=django=23232 but is this the right pattern a url should look like? If not can anyone tell how can we send them? --~--~-~--~~~---~--~~ You received this message

template string formatting

2008-12-13 Thread Vicky
Is there any way to take out the first letter of a string in django template system? ex: x("Hai") should give o/p as: "H" --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this

Re: request parsing

2008-12-10 Thread Vicky
uthttp://pinaxproject.com > > On Dec 10, 8:16 am, Vicky <[EMAIL PROTECTED]> wrote: > > > hey can u plse attach and sent me a sample project that uses forms if > > possible. I need to knw wr anw hw to create forms, should we include > > anything in settings.py or url

Re: request parsing

2008-12-09 Thread Vicky
hey can u plse attach and sent me a sample project that uses forms if possible. I need to knw wr anw hw to create forms, should we include anything in settings.py or urls.py? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

request parsing

2008-12-09 Thread Vicky
If we send a file by post method to a django function how can we separate the file from the request? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

templates database access

2008-12-08 Thread Vicky
Is there any way to insert, retrieve, delete and update tables in a database from templates itself? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: ifequals in templates

2008-12-08 Thread Vicky
Yea that was the mistake :) it wrks fine nw On Dec 8, 3:16 pm, Daniel Roseman <[EMAIL PROTECTED]> wrote: > On Dec 8, 9:31 am, Vicky <[EMAIL PROTECTED]> wrote: > > > > > I tried to use the code > > below: > >                                      

ifequals in templates

2008-12-08 Thread Vicky
I tried to use the code below: {% ifequal oftype 'first_name' %} {% for item in datas.first_name %} {{ item }}

variables inside variables in templates

2008-12-07 Thread Vicky
Is there a way to use variables like: {{ content.{{ items}} }} ?? I need do send the object and field names to template and access content of that field from template. This thing works: {{ content.name }} But i need the thing after '.' also to be a

Re: XML templates

2008-12-02 Thread Vicky
I did as you said. Still its giving the same error :( On Dec 2, 11:38 am, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > On Mon, 2008-12-01 at 22:20 -0800, Vicky wrote: > > I tried the code below: > > > from django.template import loader, Context > > >

Re: XML templates

2008-12-01 Thread Vicky
') I verified that the file is in the location. But when i compile it keeps telling that template file does not exist. What to do? On Dec 1, 4:57 pm, Eric Abrahamsen <[EMAIL PROTECTED]> wrote: > On Dec 1, 2008, at 7:51 PM, Vicky wrote: > > > > > Can we use XML files as t

XML templates

2008-12-01 Thread Vicky
Can we use XML files as templates instead of HTML? --~--~-~--~~~---~--~~ 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

Re: admin site problem

2008-11-18 Thread Vicky
On Nov 17, 8:35 pm, Daniel Roseman <[EMAIL PROTECTED]> wrote: > On Nov 17, 12:41 pm, Vicky <[EMAIL PROTECTED]> wrote: > > > I found the problem.. I used : > > >                             def __unicode__(self): > > > function in my model. so it a can

Re: admin site problem

2008-11-17 Thread Vicky
TED]> wrote: > Vicky wrote: > > I tried to add some values to my table from admin site. Table has 3 > > columns one of integer type and other two of string type. When i tried > > to save my entries it giving an error as: > > >              "coercing to Unicode: ne

admin site problem

2008-11-17 Thread Vicky
I tried to add some values to my table from admin site. Table has 3 columns one of integer type and other two of string type. When i tried to save my entries it giving an error as: "coercing to Unicode: need string or buffer, int found" How to solve it?