Re: Internship/Job Opportunities in Django Development

2024-10-22 Thread Tejas Vaij
to hr >> >> On Sun, 6 Oct 2024 at 20:18, Tejas Vaij wrote: >> >>> Hi Venu Gopal, I have sent you my profile on your email, please check. >>> >>> On Sun, Oct 6, 2024 at 8:12 PM Venu Gopal >>> wrote: >>> >>>> Please send me

Re: Internship/Job Opportunities in Django Development

2024-10-06 Thread Tejas Vaij
Hi Venu Gopal, I have sent you my profile on your email, please check. On Sun, Oct 6, 2024 at 8:12 PM Venu Gopal wrote: > Please send me your profile. > > On Sun, 6 Oct 2024 at 20:07, Tejas Vaij wrote: > >> Hello Django users, >> >> My name is Tejas Vaij,

Internship/Job Opportunities in Django Development

2024-10-06 Thread Tejas Vaij
Hello Django users, My name is Tejas Vaij, and I’m currently looking for internship or job opportunities in Django development. I have experience working with a variety of web projects, and my portfolio includes websites such as: - Bombay Taxi Co. <https://www.bombaytaxico.com> - Blu

HELP needed in a service-worker in a react django project

2023-10-13 Thread Tejas Vaij
Hello there, I am working on a project where I want to post a blob recorded from RecordRTC to my django server from the service worker but I am not able to get whats wrong with it. Can anyone please help me understand what wrong am I going. Here is the link of stackoverflow question of mine: h

Re: Custom user model password is not hashed

2022-05-07 Thread Tejas Agrawal
Hey Benjamin, can you please share your github repo for the same code. I'm also getting the same error in one of my project, can't figure out how to solve it. On Friday, November 13, 2015 at 6:11:09 PM UTC+5:30 benjamin...@gmail.com wrote: > The problem was, when creating a custom user, one ha

How to create .exe file of django project ?

2021-06-02 Thread Tejas Tendulkar
Hello,I create django website using django and jquery but i want to convert into desktop application.I tried pyinstaller but there is some problem with pyinstaller.It create exe file but but when i open the exe it open cmd promt and close automatically.Is there any other way to convert into des

Re:

2020-08-19 Thread tejas padghan
Only basic .go ahead On Wed, 19 Aug 2020, 7:01 pm Suraj Kumar, wrote: > Hello Django Users, > > > I want to know there is any need of knowledge in css, Html while > developing website through django. I can also use css framework bootstrap > instead of css. > Suraj > > -- > You received this

Performing raw sql queries in database

2020-06-25 Thread tejas joshi
Hi, I want to return the first occurrence of repetitive fields in my model. I have a title field in my model as follows : models.py class Post(models.Model): title = models.CharField(max_length=20) There will be multiple 'Post' with the same title. I want to exectute the following query on the P

Re: deleting an uploaded file after a positive virus check

2008-06-10 Thread tejas
Thanks for replying Karen That's quite nice, in that I don't need to worry about deleting any infected files,and uploaded files are quite small. cheers Tejas On Jun 8, 12:55 am, "Karen Tracey" <[EMAIL PROTECTED]> wrote: > On Sat, Jun 7, 2008 at 4:35 PM, tejas <

deleting an uploaded file after a positive virus check

2008-06-07 Thread tejas
the file from the server immediately, but I can't seem to find the temporary path of the uploaded file. The dict only contains 'content' and 'filename'. I've looked at request.FILES too, and that doesn't contain the path. Is there any way I can delete the uploaded

including blocks in inclusion tag templates

2007-05-05 Thread tejas
Hi All I've been using the really nice idea of template blocks in django for adding javascript code So I have a main js block for javascript in my base.html When I extend the base, and I need javascript - I just make a new js block and use super to append my javascript. This all works fine exc

Re: error separating apps from projects

2007-04-21 Thread Tejas Shah
es/django I just created a > site-packages/djangoapps subdirectory and then reference each > application with djangoapps.registration for instance. > > Michael > > On 4/20/07, tejas <[EMAIL PROTECTED]> wrote: > > > > Gah! > > > > I'm so sorry >

Re: error separating apps from projects

2007-04-20 Thread tejas
Gah! I'm so sorry I forgot to change one of the urls when moving the app out of my project directory on a related note - I'm using ubuntu and I tried setting the PYTHONPATH variable to my APPS directory, but then django could not see the apps (so I used the python import statement). Am I trying

error separating apps from projects

2007-04-20 Thread tejas
. Error was: No module named commonapp.views.home So the impression I'm getting is that somehow it's adding the project module to the path. Does anyone know why this is happening?? Thanks Tejas --~--~-~--~~~---~--~~ You received this message because

Re: Efficient method to execute a query

2007-04-15 Thread Tejas Shah
uery mechanism http://groups.google.com/group/django-users/browse_thread/thread/94e0c5c5c6b29df7/703b3faccce6e803 This post suggests you can Extend the Q object with your own that adds a left join code chunk not tested it out yet, but it looks good On 4/15/07, Michael Trier <[EMAIL PROTECTED]> wrote

Re: Efficient method to execute a query

2007-04-15 Thread Tejas Shah
give you all the > info you want, the item, the group, and the rating. > > Michael > > On 4/15/07, Paul Rauch <[EMAIL PROTECTED]> wrote: > > > > tejas schrieb: > > > Hi - I'm a Django newbie and I have a query that, using the syntax in > > > th

Efficient method to execute a query

2007-04-15 Thread tejas
Hi - I'm a Django newbie and I have a query that, using the syntax in the database API, would become very slow. I'm wondering what the way around it is. I have 3 tables Group -- contains a list of groups Item: (each item belongs to a group) ForeignKey(groupid) ItemRatingsByGroup: (the ra