Re: Finding a job

2024-04-05 Thread Pearson Tech
I'm sorry to inform you but I'm not recruiting, I don't have open projects and I'm not looking for developers, even so I appreciate it. On Wed, Apr 3, 2024 at 12:38 PM Ganilson Garcia wrote: > Dear recruiters! > > I hope this message finds you well. I am reaching out to express my > interest in

Re: E-comm live project

2024-03-18 Thread Pearson Tech
Whatsapp +55 79 0-0020 Please add me Em seg., 18 de mar. de 2024 às 10:26, 1001_prabhjot Singh < prabhjotbal...@gmail.com> escreveu: > so i am working on a full stack e-comm website and this project is really > very big for me because it's a live project am using django for backend >

Re: Student Club Management Web App: Seeking Collaboration and Advice from Experts

2024-03-07 Thread THE tech
I will be happy to join you my friend +2347068821240 On Wed, Mar 6, 2024, 10:54 PM Ogunkoya Mayowa wrote: > Add me +2349066713865 > I also want to learn and contribute to the project. > > On Wed, Mar 6, 2024, 3:29 PM Ambaig Baig wrote: > >> I would like to join u into your project as I am

Re: Exciting Opportunity: Join Our Django WhatsApp Bulk Messaging Project!

2024-02-22 Thread THE tech
Yes am interested 爐 On Sun, Feb 18, 2024, 9:39 PM patel dhruvish wrote: > I am interested in this project. > > On Mon, Feb 19, 2024, 12:59 AM fextha satria > wrote: > >> I'm interesting in this project. Please allow me to join. >> >> Satria fextha >> >> Outlook for iOS

Re: Looking for collaborators for an online marketplace project with Python, Django, React.js and Next.js

2024-02-13 Thread Ada Tech
I'm interested On Sat, Feb 10, 2024, 5:55 PM Jorge Bueno wrote: > The project: > > I am working on an exciting project that I think you might be interested > in. It's about an online marketplace similar to the US farmers and > livestock markets, but with an online focus. The project is already

Re: Unpaid Internship

2023-04-30 Thread Each1Teach1 Tech Inc
let's talk On Monday, April 24, 2023, John Diginee wrote: > Dear Sir/Ma'am, > > I hope this message finds you well. I am a full-stack software engineering > student at Holberton School, a Silicon Valley-based software engineering > institution. I am reaching out to express my interest in an

Export filtered data

2023-01-19 Thread tech george
Hello, I have been trying to export filtered table data to excel but was unlucky. I can filter the table by date range successfully but can export the filtered data. Below is my view.py. Please help def export_sickoff_export(request): if request.method=="POST": start_date =

Re: group

2022-09-28 Thread tech george
Please add me: +254724164862 On Wed, Sep 28, 2022 at 7:13 PM Prince Adedotun wrote: > Add me also... > > 08167422287 > > On Mon, 26 Sept 2022, 18:49 yassin kamanyile, > wrote: > >> Add me +255763023477 >> >> On Mon, 26 Sept 2022, 15:53 Abdulfarid Olakunle, >> wrote: >> >>> Hello fellow

Re: Filter by date range

2022-09-12 Thread tech george
I managed to solve the issue. I was using the wrong keyword to fetch the dates. Thanks for the support. On Mon, Sep 12, 2022 at 9:03 AM tech george wrote: > Hello, > > I have tried debugging as below and it returned data; > > search_results = > Prescript

Re: Filter by date range

2022-09-12 Thread tech george
.@gmail.com> wrote: > Either there's no data for that month or your query is wrongly formatted. > Probably you can try your query in the shell first. > > On Sun, 11 Sept 2022 at 02:12, tech george wrote: > >> Hello Muhammad, >> >> I'm choosing dates between 202

Re: Filter by date range

2022-09-10 Thread tech george
On Sat, 10 Sept 2022 at 13:27, tech george wrote: > >> Hello Carlos, >> >> I have used the code below as you advised by when I filter the table >> comes blank: >> >> query_results = Prescription.objects.filter(date__rang >> e=[fromdate,todate]) >>

Re: Filter by date range

2022-09-09 Thread tech george
filter(date__range=[fromdate,todate]) > if you have any problem with performance hit database use select_related > or used m2m field use prefect_related > https://docs.djangoproject.com/en/4.1/ref/models/querysets/ > > best! > > On Fri, Sep 9, 2022 at 7:48 AM tech george

Filter by date range

2022-09-09 Thread tech george
Hello friends! I am trying to give users an easier way to filter data by date range. My views.py code is as below, but unfortunately, it is hiding data without applying the filter whenever I try to use if, else statements. Please advise what I might be doing wrong. views.py ef

Re: Negative Stock Prevention

2022-09-01 Thread tech george
Ryan Nowakowski, wrote: > >> I don't see any error. Did you forget to post it? >> >> On August 31, 2022 5:57:32 AM CDT, tech george >> wrote: >>> >>> Hello, >>> >>> Sorry for the late reply. >>> >>> I changed the models

Re: Negative Stock Prevention

2022-08-31 Thread tech george
Hello, Sorry the error is: django.db.utils.IntegrityError: CHECK constraint failed: quantity On Thu, Sep 1, 2022 at 3:45 AM Ryan Nowakowski wrote: > I don't see any error. Did you forget to post it? > > On August 31, 2022 5:57:32 AM CDT, tech george > wrote: >> >

Re: Negative Stock Prevention

2022-08-31 Thread tech george
umably you want to check if quantity is > greater than or equal to qu rather than 0. > Try changing `if quantity > 0` to `if instance.quantity >= qu` > > > On Tuesday, August 30, 2022 at 3:44:51 PM UTC+1 Ryan Nowakowski wrote: > >> On Mon, Aug 29, 2022 at 05:18:39PM +

Negative Stock Prevention

2022-08-29 Thread tech george
Hello, Please help crack the below code, I want to prevent negative stock, and if the stock is == 0, deduct it from reorder_level instead. Currently, the stock goes negative. models.py class Stock(models.Model): quantity = models.IntegerField(default='0', blank=True, null=True)

Models Culculations

2022-08-03 Thread tech george
Hello, Please help with the below, I am trying to get dispense_quantity from Dispense Model and subtract it from the quantity on Stock Model. Then after that get something like this; @property def closing_stock(self): return (self.quantity - self. quantity_issued ) class

Fetching Data Between Models

2022-04-20 Thread tech george
I have a model Staff and LeaveReportStaff, I wanted to get leave_balance between Total_Leave_Days and leave_days. I already used Foreignkey for staff but I'm not sure if it is right to use Foreignkey again. Please advise the best way forward. class Staff(models.Model): Total_Leave_Days =

Calculations Between Models

2022-04-19 Thread tech george
Hello, I have a model Staff and LeaveReportStaff, I wanted to get leave_balance between Total_Leave_Days and leave_days. Please advise the best way forward. class Staff(models.Model): Total_Leave_Days = models.PositiveIntegerField(default=0) course = models.ForeignKey(Course,

Re: Calculated Fields

2022-04-11 Thread tech george
gits=10, decimal_places=2, > default='0', blank=True, null=True) > quantity = models.IntegerField(default='0', blank=True, null=True) > reorder_level = models.IntegerField(default='0', blank=True, null=True) > > @property > def total_price(self): > return (sel

Re: Calculated Fields

2022-04-10 Thread tech george
igned mail from my phone) > > > > Original message > From: tech george > Date: 11/4/22 03:50 (GMT+10:00) > To: django-users@googlegroups.com > Subject: Calculated Fields > > Hello, > > I am trying to calculate fields directly from a model

Calculated Fields

2022-04-10 Thread tech george
Hello, I am trying to calculate fields directly from a model but no luck. I want to get total_price from quantity, reoder_level and unit price. My code is abelow, Please advise. class Stock(models.Model): unit_price = models.DecimalField(max_digits=10, decimal_places=2, default='0',

Re: NameError:

2022-04-09 Thread tech george
tients model. > > Regards, > > Antonis > > On 08/04/2022 20.49, tech george wrote: > > Hello, > > I've been struggling with the below error, what might be the problem? > > I have used the same ForeignKey in other models.. all works ok, except > this. &g

NameError:

2022-04-08 Thread tech george
Hello, I've been struggling with the below error, what might be the problem? I have used the same ForeignKey in other models.. all works ok, except this. Please advise. *Models:* class CustomUser(AbstractUser): user_type_data = ((1, "AdminHOD"), (2, "Pharmacist"), (3, "Doctor"), (4,

Re: tutorial 1 problems from djangoproject website - not working, do not exactly understand

2022-03-24 Thread Shah Tech
you must first your current directory to your project directory mysite: in window type: cd mysite and then try python manage.py runserver On Thursday, March 24, 2022 at 6:51:53 PM UTC+5 Kasper Laudrup wrote: > On 24/03/2022 08.05, harsh jain wrote: > > Still facing issue ? > > This course will

Re: FileNotFoundError at /login/

2022-03-24 Thread Shah Tech
1. According to your model, you meant the models.py file and default.jpg are in same directory. => But according to the error it smells that they are not same directory, so try to point to the exact relative path of the image. On Thursday, March 24, 2022 at 10:10:13 AM UTC+5 Delvin Alexander

Re: Django help| Urgent | how to find the frequency of a string for each word using django admin?

2021-07-09 Thread Tech Cue
*class String(models.model):* *string = models.textarea(null = True, blank = True)* > *user = models.ForeignKey(user, on_delete=models.CASCADE)* > *def __str__(self):* > *return self.string* > *class Song_Words_Count(models.model):* > *song = models.ForeignKey(user,

Re: looking for mobile developers

2021-07-05 Thread Kylex Isasi Tech
I'm interested Le dim. 4 juil. 2021 à 9:38 PM, Theresa Taye a écrit : > Hello guys, > > I need flutter users for a project urgently if you are interested, please > contact me. > > Best regards > > -- > You received this message because you are subscribed to the Google Groups > "Django users"

Re: Product Categories

2021-05-23 Thread tech george
Thanks Work, Let me try that. Regards. On Sat, 22 May 2021, 21:48 N'BE SORO, wrote: > Ok use: > > # In Python > # print(category.get_ancestors()) > # In Jinja category.get_ancestors > > Le sam. 22 mai 2021 à 18:14, Patrick Café a > écrit : > >> OK thank you

Re: DoesNotExist at /

2020-12-28 Thread tech george
Hi, Let me go through the dock and see if I'll get a breakthrough. Thanks On Mon, 28 Dec 2020, 18:41 Prashanjeet Halder, wrote: > There's no built-in filter as currency in django template language you can > custom create one. > > *As Demonstrated Here: LINK >

Re: DoesNotExist at /

2020-12-28 Thread tech george
Hi, Yes I does. On Mon, 28 Dec 2020, 18:41 AMRIT SHAHI, wrote: > Is your hosting support python > > On Mon, Dec 28, 2020, 12:49 PM tech george wrote: > >> Hello, >> >> I am getting the error as shown below when uploading my django project to >&

DoesNotExist at /

2020-12-27 Thread tech george
Hello, I am getting the error as shown below when uploading my django project to share hosting. How can I resolve it? Please advise. DoesNotExist at / Currency matching query does not exist. Request Method: GET Request URL: http://fullcart.co.ke/ Django Version: 3.0.7 Exception Type:

Re: Python Django Training

2020-12-07 Thread tech george
I want in too On Mon, 7 Dec 2020, 16:43 Hector Berrones, wrote: > I am interested. > > On Mon, Dec 7, 2020, 2:09 AM narendra thapa > wrote: > >> hello please add me also in training group? >> >> >> On Fri, Feb 21, 2020 at 7:27 PM Bharati Nilam >> wrote: >> >>> Hi, >>> I also from Hyderabad

RE: Page Resoltuon

2020-12-01 Thread tech george
Hello, I am working on this webapp using a pre designed template. But my project is too stretched out and can't seem to make it look like the actual template. Please advise. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from

Re: Multiple Media_Root

2020-11-23 Thread tech george
Thanks for the guide, Let me try this option then i'll let you know in case I get stuck. On Mon, Nov 23, 2020 at 4:41 PM Mbah Victor wrote: > Plz can u send me a review of what you what > > Victor > > On Sun, Nov 22, 2020, 8:05 PM tech george wrote: > >> Hello, &g

Multiple Media_Root

2020-11-22 Thread tech george
Hello, I am developing an E-Commerce website and I wanted to have a separate upload folder for my slides and separate folders for other sections of my site. Is there a way i can go about it other than using the ascending and Descending order? Please advise. See section of my view.py page.

downloading image files from django template

2020-07-25 Thread Teaching Tech
How can I download an image file that is shown to the template in Django? I'm new to Django. This might be a silly question. But I need to know for my existing project. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this

Confused about the Django admin panel!

2020-01-13 Thread Tech Inject
I am new at Django. and I am creating one college project now I need to add some good functionality at the admin panel. I want to add blog post type features with ajax to auto-save and all. I want to create data visualization using charts, etc. now the problem arises is I am confused about is

pip install vs apps in folder

2019-02-11 Thread tech tech
Hi, all, I am interested in this project: https://github.com/mbraak/django-file-form I run "pip install django-file-form" and everything works fine. But, I want to change some behaviors of this upload package. I feel this link

Re: Creating superuser

2018-10-04 Thread MK tech
Please check this link about your issue https://stackoverflow.com/questions/37949198/wsgirequest-object-has-no-attribute-user-django-admin

querying multiselectcheckbox

2018-01-31 Thread Tech Today
# this is my model from django.db import models from multiselectfield import MultiSelectField TRACK_EVENTS_CHOICES = ( ('100M', '100 Meter'), ('200M', '200 Meter'), ('400M', '400 Meter'), ('800M', '800 Meter'), ('1500M', '1500 Meter'), ('5000M', '5000 Meter'), )

django

2017-09-21 Thread TECH ROYAL
how to create a social interactivity website with using django?? -- 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 django-users+unsubscr...@googlegroups.com. To

ABOUT DJANGO

2017-09-21 Thread TECH ROYAL
how to make website faster in python -- 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 django-users+unsubscr...@googlegroups.com. To post to this group, send

HOMEPAGE

2017-09-21 Thread TECH ROYAL
which extension may i use a creating homepage im using django -- 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 django-users+unsubscr...@googlegroups.com. To

Re: duplicate key value violates unique constraint "django_admin_log_pkey"

2017-06-01 Thread Tech-Harvester
Helped me too. Thanks. On Thursday, October 14, 2010 at 8:54:30 PM UTC+5:30, glob...@iamsandiego.com wrote: > > Hi Folks, > > After updating a postgres db for my django app Iam getting this error > when I try and save new data to the db: > > Request Method: POST > Request URL:

Is it possible to return an HttpResponse in django with text & a json object?

2012-01-29 Thread CareerDhaba tech
Hi all, I am in a bit of a jiffy and need some guidance. Here is the issue: I am creating a basic Q application, where a question pops up for the user, along with a form to submit the answer. Depending on the type of question, the input of the form changes (ie if its a multiple choice, its

Re: Need help in renaming template tags

2012-01-02 Thread CareerDhaba tech
rojects and change the tag's name, I >> guess. Yes, it's very hacky, and no, don't do it in production. >> >> I'll try to keep you posted once I've got a ticket in TRAC. >> >> >> Cheers, >> AT >> >> >> >> >> On Mon, Jan 2, 2012 at 4:

Re: Need help in renaming template tags

2012-01-02 Thread CareerDhaba tech
6 2011, 3:01 pm, CareerDhaba tech <t...@careerdhaba.com> > wrote: > > Hey everyone, > > > > I am running into an issue where two third party apps easy_thumbnail and > > sorl_thumbnail are using the custom template tag called thumbnail. > Hence, I > > am actu

Re: Need help in renaming template tags

2012-01-02 Thread CareerDhaba tech
gt; AT > > > > On Mon, Jan 2, 2012 at 4:38 AM, CareerDhaba tech <t...@careerdhaba.com>wrote: > >> Just bumping this up in case anyone can help. >> >> Thanks, >> Harshil >> >> >> On Mon, Dec 26, 2011 at 7:31 PM, CareerDhaba tech >&g

Re: Need help in renaming template tags

2012-01-01 Thread CareerDhaba tech
Just bumping this up in case anyone can help. Thanks, Harshil On Mon, Dec 26, 2011 at 7:31 PM, CareerDhaba tech <t...@careerdhaba.com>wrote: > Hey everyone, > > I am running into an issue where two third party apps easy_thumbnail and > sorl_thumbnail are using the custom t

Need help in renaming template tags

2011-12-26 Thread CareerDhaba tech
Hey everyone, I am running into an issue where two third party apps easy_thumbnail and sorl_thumbnail are using the custom template tag called thumbnail. Hence, I am actually unable to use the tag at all. I would like to change it so that the template tag from sorl_thumbnail is renamed as

Looking for a good Document Management System (DMS) to plug into my Django app

2011-10-17 Thread CareerDhaba tech
Hi folks, I have been looking around all over to find a high quality DMS to plug into my Django application. I'd like to be able to upload and download .docx or .pdf files, edit the metadata, and also be able to serve the content of the files on the front end. If the plugin allows for preview,

Re: RegistrationForm subclass not showing up

2011-07-08 Thread CareerDhaba tech
rm > properly in the view, or there is some sort of overriding default > being called from a different location (maybe django.contrib.auth?). > > Also - I can't see the form_call field that you mention - does this > refer to the parameter 'form_class=RegistrationForm' I've used abov

Re: RegistrationForm subclass not showing up

2011-07-08 Thread CareerDhaba tech
Hi Kat, You have to tell the your registration view to use the RegistrationFormTermsofService. First, import that class from forms and change your form_call from None to to RegistrationFormTermsofService. Hope this helps. On Thu, Jul 7, 2011 at 5:34 PM, katstevens wrote:

Re: Issue with saving user information during django_registration

2011-07-07 Thread CareerDhaba tech
ete...@gmail.com> wrote: > I'm mostly guessing, but try this for your registration_form.html template > instead http://dpaste.com/hold/564305/ > > > Cheers, > André > > On Thu, Jul 7, 2011 at 12:03 AM, CareerDhaba tech <t...@careerdhaba.com>wrote: > >

Re: How to use the django-users mailing list properly and doing your homework..

2011-07-06 Thread CareerDhaba tech
Stack Overflow: http://stackoverflow.com On Thu, Jul 7, 2011 at 9:00 AM, Kenneth Gonsalves wrote: > On Thu, 2011-07-07 at 00:10 +0100, Cal Leeming [Simplicity Media Ltd] > wrote: > > I'm going to ask a really stupid question... > > > > What's "SO"? > > I was just going

Re: Issue with saving user information during django_registration

2011-07-06 Thread CareerDhaba tech
:52 AM, Andre Terra <andrete...@gmail.com> wrote: > Start by pasting relevant code. Views, forms and possibly the backend > logic. Use dpaste.com > > And quit bumping or you'll never get an answer, not from most of us. > > Regards, > André Terra > > On 7/6/11, Caree

Re: Issue with saving user information during django_registration

2011-07-06 Thread CareerDhaba tech
Bumping once more. Can anyone shine some light on this issue? Would be extremely helpful. On Wed, Jul 6, 2011 at 6:24 PM, CareerDhaba tech <t...@careerdhaba.com>wrote: > Bump - anyone has any insight into this? > > I am happy to post my code, just not sure where I am going wr

Re: Issue with saving user information during django_registration

2011-07-06 Thread CareerDhaba tech
Bump - anyone has any insight into this? I am happy to post my code, just not sure where I am going wrong. On Wed, Jul 6, 2011 at 2:35 PM, CareerDhaba tech <t...@careerdhaba.com>wrote: > Hey folks, > > Django newbie here and I need some help. I am using django_registration &

Re: Flatpages do not work

2011-07-06 Thread CareerDhaba tech
Hi Paul, As described in the error, Django couldn't find the url test/ in the URLconf because its not there. Go to the urls.py of your app and add the appropriate link, and view to the URLconf. Go through this link, it should be helpful - https://docs.djangoproject.com/en/1.3/topics/http/urls/

Issue with saving user information during django_registration

2011-07-06 Thread CareerDhaba tech
Hey folks, Django newbie here and I need some help. I am using django_registration v0.8 and using the docs here: http://readthedocs.org/docs/django-registration/en/latest/index.html I have successfully installed the app, and I am using the default backend for my registration purposes. I have

Re: Foreign key dependent model's data not getting saved !

2011-06-25 Thread CareerDhaba tech
Tracey <kmtra...@gmail.com> wrote: > On Sat, Jun 25, 2011 at 1:00 PM, CareerDhaba tech <t...@careerdhaba.com>wrote: > >> The user model is getting saved with username and password but the >> userprofile isn;t :( > > > That is a somewhat misleading desc

Foreign key dependent model's data not getting saved !

2011-06-25 Thread CareerDhaba tech
Whats the problem with this code ? *models.py *class userprofile(models.Model): user = models.OneToOneField(User) Firstname = models.CharField(max_length=20) Middlename = models.CharField(max_length=20) Surname = models.CharField(max_length=20) Gender =

Re: 'module' object has no attribute 'Manipulator'

2011-06-24 Thread CareerDhaba tech
t 3:00 PM, CareerDhaba tech <t...@careerdhaba.com> > wrote: > > I am very new to Django just started working around with forms. I have > been > > facing difficulty in getting a user registered. Anyways i was following > > steps given in James Bennet blog. > > > &

'module' object has no attribute 'Manipulator'

2011-06-24 Thread CareerDhaba tech
Hey, I am very new to Django just started working around with forms. I have been facing difficulty in getting a user registered. Anyways i was following steps given in James Bennet blog. http://www.b-list.org/weblog/2006/sep/02/django-tips-user-registration/ I have defined my classes, forms

Re: Our new startup site build on Django and GAE is now live!

2011-06-02 Thread CareerDhaba tech
Cool looking site, but it would be useful to allow people to browse the site a bit before having to register. On Fri, Jun 3, 2011 at 9:45 AM, Gath wrote: > Great stuff!! Thumbs up. > > I like the concept! > > Please share you knowledge on how you did the Django/GAE

Re: Django 1.3 docs PDF

2011-06-02 Thread tech tech
Oscar - thanks so much for this. Just a few hours ago, I was frantically trying to download the django site offline in preparation for two overnight train journeys from Bombay to Himachal Pradesh. The internet is spotty at best whilst on the train, and it is non-existent in the mountains of

.Net Developer Job Opening - Valencia, CA

2011-04-04 Thread Makro Tech
Hi This is Vignesh with Makro Technologies, Inc. We have been in business for over 10 years and we are one of the Fast 500 National IT staffing and Solution firms in USA. Our clients include country’s top-notch IT, Healthcare, Pharmaceutical, Financial, Telecom,Government and other industries.

.Net Developer Job Opening - Valencia, CA

2011-04-01 Thread Makro Tech
Hi This is Vignesh with Makro Technologies, Inc. We have been in business for over 10 years and we are one of the Fast 500 National IT staffing and Solution firms in USA. Our clients include country’s top-notch IT, Healthcare, Pharmaceutical, Financial, Telecom,Government and other industries.

Major Tech Start up – NYC –Python Developer - Dj ango/ Python Java/J2ee

2010-07-11 Thread Tech Scout
* Major Tech Start up – NYC –Python Developer - Django/ Python Java/J2ee FTE opportunity * *View, Refer or Apply confidentially here: **http://bitURL.net/3df<http://biturl.net/3df> * * * * <http://biturl.net/3df>**Tech Scout * -- You received this message because you are subscribed t

usage of Django in Atlanta?

2009-04-12 Thread Tech Scout
What companies do you know of that are using Django in the Atlanta area? Marcel Duffoo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to