Re: Please I need guidance

2024-02-10 Thread Lutalo Joseph Bbosa
DM I have done it for a client before On Sat, Feb 10, 2024, 18:22 solomon chikezie wrote: > Please I have a project I am About to start on Affiliate marketing using > Django. Please I need someone to help me. > Thank you > > On Fri, 9 Feb 2024, 15:31 machine learning, > wrote: > >> please send

Please I need guidance

2024-02-10 Thread solomon chikezie
Please I have a project I am About to start on Affiliate marketing using Django. Please I need someone to help me. Thank you On Fri, 9 Feb 2024, 15:31 machine learning, wrote: > please send your previous work on cont...@aikingsolutions.com and > remember i am not able to pay you right now but i

Re: Need guidance

2021-05-20 Thread lalit suthar
postgres ArrayField will be suitable for your requirement. Serialization will work the same like it works for other fields. On Thursday, 20 May 2021 at 21:00:14 UTC+5:30 xaadx...@gmail.com wrote: > I wanna to store multiple value in django model using DRF e.g. i have to > choose three days from

Need guidance

2021-05-20 Thread Muhammad Shehzad
I wanna to store multiple value in django model using DRF e.g. i have to choose three days from a week. I am using django rest framework. I have tried many solution but failed 1. Which field i have to implement in django model? CharField? Postgre ArrayField? 2. How to serialize the data to s

Re: Need Guidance to setup Django with MS SQL server

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer? We can help you in this and related tasks at fair prices. Reply or send email to divy...@pythonmate.com Best Regards, Divyesh Khamele, Pythonmate On Thu, 8 Oct 2020, 12:06 am arun sahu, wrote: > Hi Geeks, > > I need your support for settin

Re: Need Guidance to setup Django with MS SQL server

2020-10-07 Thread Eugene TUYIZERE
try this https://django-mssql.readthedocs.io/en/latest/quickstart.html#dependencies OR https://stackoverflow.com/questions/43430091/connecting-django-with-mssql-server On Wed, 7 Oct 2020 at 20:36, arun sahu wrote: > Hi Geeks, > > I need your support for setting up my django project with MS SQL s

Need Guidance to setup Django with MS SQL server

2020-10-07 Thread arun sahu
Hi Geeks, I need your support for setting up my django project with MS SQL server. As there is no proper tutorial how to setup with MS SQL server. I tried it many times but failed with same errors. Please help me to progress. Tried below : 'ods_database': { 'ENGINE': 'sql_server.pyodbc

Re: Need Guidance

2020-06-28 Thread Ogunsanya Opeyemi
*From: *Ogunsanya Opeyemi > *Sent: *Sunday, 28 June 2020 1:38 PM > *To: *django-users@googlegroups.com > *Subject: *Re: Need Guidance > > > > Hi, Name the first location as location1 and the second location as > location2. > > > > On Sun, Jun 28, 2020, 6

RE: Need Guidance

2020-06-27 Thread yammunap...@gmail.com
Yes  naming the location is ok. But If I sort one location other location should be hide and details should be visible From: Ogunsanya OpeyemiSent: Sunday, 28 June 2020 1:38 PMTo: django-users@googlegroups.comSubject: Re: Need Guidance Hi, Name the first location as location1 and the second

Re: Need Guidance

2020-06-27 Thread Ogunsanya Opeyemi
Hi, Name the first location as location1 and the second location as location2. On Sun, Jun 28, 2020, 6:14 AM yammu...@gmail.com wrote: > Hello Everyone, > > if any one please give me an guidance how to add secondary fields in > models in backend. for example if i add a secondary location to the

Need Guidance

2020-06-27 Thread yammu...@gmail.com
Hello Everyone, if any one please give me an guidance how to add secondary fields in models in backend. for example if i add a secondary location to the google company then i will have one more card details with location of india and another card of the same company detail should be same but lo

Re: Need guidance on static website conversion to Django

2013-02-07 Thread Steve Metivier
Thanks very much for the advice. I'm pretty sure that's the approach I'm going to take. --steve On Wednesday, February 6, 2013 3:59:59 PM UTC-7, Harry Houdini wrote: > > > Maintaining that many static files has really got to suck, this is where > Django is going to help you a lot. First step for

Re: Need guidance on static website conversion to Django

2013-02-06 Thread Harry Houdini
Maintaining that many static files has really got to suck, this is where Django is going to help you a lot. First step for you because you are just starting out it to play around with Django, build some base templates and try extending them until you get your templates looking how you want. The

Re: Need guidance on static website conversion to Django

2013-02-05 Thread Steve Metivier
That may well be an immediate step I could take to speed up load times, but improving load times is only one of the reasons for the conversion. I also want to replace the current Wordpress blog, and add new functionality, such as the ability for visitors to share quotes socially, support user-c

Re: Need guidance on static website conversion to Django

2013-02-05 Thread Avraham Serour
if the site is static why use a cms? just serve the static files, you won't get any faster than that On Tue, Feb 5, 2013 at 8:37 PM, Steve Metivier wrote: > >- Project: Convert an essentially static HTML website and its attached >WordPress blog, to Django, to improve on its currently sl

Need guidance on static website conversion to Django

2013-02-05 Thread Steve Metivier
- Project: Convert an essentially static HTML website and its attached WordPress blog, to Django, to improve on its currently slow load time, and to enable its functionality to be extended. (It’s currently implemented on a platform that I believe introduces significant overhead

Re: Need guidance on multiple domain site configuration.

2007-04-24 Thread Nick Tidey
Awesome. Thanks Doug. That's precisely what I've been working towards over the last couple of hours, but didn't know about search paths in Postgres. I was trying to handle it within Django by prefixing a "SCHEMA_PREFIX" to the table name on my own app models (of which there aren't many). Unfortu

Need guidance on multiple domain site configuration.

2007-04-24 Thread Nick Tidey
Hello all. I'm creating a CMS/e-commerce Django project for a client which will ultimately be used to handle content for three different domains. In terms of sharing of resources: - content will not be shared between sites - public templates will differ between sites - the administration interfa

Re: Need guidance on multiple domain site configuration.

2007-04-24 Thread robin_percy
I think everything could be accomplished by creating a separate settings.py file for each site, and pointing to them in your virtual hosts. By installing your apps outside the project dirs, but still in the PYTHON_PATH, you can refer to the same app dirs in all settings files. The only problem I

Re: Need guidance on multiple domain site configuration.

2007-04-24 Thread Doug Van Horn
On Apr 24, 5:59 pm, Nick Tidey <[EMAIL PROTECTED]> wrote: > Thanks for the help Robin. I'm new to Python also, so wasn't too sure > about how to reuse the apps. > > I'll see if I can't use triggers to propagate the user information > between databases. Unless there's a better way? > You could ins

Re: Need guidance on multiple domain site configuration.

2007-04-24 Thread Nick Tidey
Thanks for the help Robin. I'm new to Python also, so wasn't too sure about how to reuse the apps. I'll see if I can't use triggers to propagate the user information between databases. Unless there's a better way? On Apr 25, 3:02 am, robin_percy <[EMAIL PROTECTED]> wrote: > I think everything co