Re: Django project

2024-12-05 Thread Ismail Kabir
Interested to contribute on your project. Ismail kabir On Wed, 4 Dec 2024 at 21:06 Abba Respect wrote: > Looking for volunteers to contribute on my project. Mail me in private > > -- > You received this message because you are subscribed to the Google Groups > "Djang

Re: Hiring react developers

2024-10-30 Thread Mirza Ismail Baig
Hey! I'm interested... As am a backend engineer, would be highly interested for this position / opportunity! Looking forward to hear from you Thank you! On Wed, 23 Oct 2024, 18:24 Gourav Kumar Dhiman, wrote: > Am a Full stack developer .Am interested > > https://www.linkedin.com/in/gourav-k

Django model field different from db field managed=false

2022-09-06 Thread ISMAIL TAIBANI
I have model containing field ad_account_id = models.TextField(null=True, blank=True) but this model is managed = False and in database type is int and not textfield whenever i do query using ORM it gives ad_account_id type as int and not str and don't through any exception as well why is it so

Re: CSS not linking with HTML

2021-05-30 Thread Mehdi Ismail
you want to mention (provide screenshot) of the error? On Sunday, 30 May 2021 at 09:14:22 UTC+5:30 sukhy.g...@gmail.com wrote: > Getting error while using using command python manage.py collectstatic > Regarda > > On Sat, May 29, 2021, 21:23 Mehdi Ismail >> python manag

Re: CSS not linking with HTML

2021-05-29 Thread Mehdi Ismail
python manage.py collectstatic try that... and update On Saturday, 29 May 2021 at 20:44:48 UTC+5:30 sukhy.g...@gmail.com wrote: > Project Folder ➡️static ➡️css➡️style.css➡️ > > On Sat, May 29, 2021, 19:16 Fabiano Leite >> >> Where is located your 'css/style.css'; >> Em sábado, 29 de maio de 20

Re: looking for an expert django developer

2021-05-22 Thread Mehdi Ismail
Depends on what your requirements are. What type of code you are doing. What are your expectations - work expectations and achievables. Please set out more information ? - or lets discuss the plan, break-down the tasks and timelines; basis the code (quality, design, technique of implementatio

Re: Can you help me solve this

2021-05-22 Thread Mehdi Ismail
Potentially cracked the migration at some stage. you might need to manually fix it, or fix your migration files (preferred). This would require for me to take a look at your database tables/structures and your current status of migrations/code; if you need a pair of eyes, you could email me b

Re: CI build failing but local builds pass

2018-08-03 Thread Ismail Sunni
Thanks so much. I got this problem also. On Thursday, August 2, 2018 at 2:02:34 AM UTC+7, Ajat Prabha wrote: > > The issue is fixed now, it happened because Travis used PostgreSQL v9.2 by > default and Django v2.1 works with v9.4+ (changelog >

Re: null value in column violates not-null constraint

2017-05-25 Thread Ismail Sarenkapic
th your model definition > > > > > > On Thursday 25 May 2017 13:53:19 Ismail Sarenkapic wrote: > > > Tnx , > > > I know that i can manually select the user, but i want it to be > > > automatic-with current user to add the product > > >

Re: null value in column violates not-null constraint

2017-05-25 Thread Ismail Sarenkapic
rm.instance.user" > > should be > > "form.instance.seller" > > But the "null value in column" error could also apply to any of the > non-nullable fields in your Product model that are not set by the time > you save the instance. > > On 5/25/17, I

Re: null value in column violates not-null constraint

2017-05-25 Thread Ismail Sarenkapic
Tnx. The slug is not important here. The main question is how do I add product with current user! On Thursday, May 25, 2017 at 8:00:08 PM UTC+2, Muhammad wrote: > > Ismail, > > You don't seem to be handling the value for Product.slug anywhere, either > in the model or the vi

Re: null value in column violates not-null constraint

2017-05-25 Thread Ismail Sarenkapic
Tnx , I know that i can manually select the user, but i want it to be automatic-with current user to add the product On Thursday, May 25, 2017 at 7:13:39 PM UTC+2, Melvyn Sopacua wrote: > > On Thursday 25 May 2017 04:19:56 Ismail Sarenkapic wrote: > > > Hi, I'm trying

null value in column violates not-null constraint

2017-05-25 Thread Ismail Sarenkapic
Hi, I'm trying to create a digital marketplace site where users will be able to register and submit their products. I created the Product model and connected it with User with foreign key.Everything seems to be alright, but when I submit my product i get the following error: null value in colu

URL Blocked: This redirect failed because the redirect URI is not whitelisted in the app’s Client OAuth Settings. Make sure Client and Web OAuth Login are on and add all your app domains as Valid OAut

2017-05-19 Thread Ismail Sarenkapic
I'm trying to allow users to login with facebook via django allauth to my website but I am getting the following error: URL Blocked: This redirect failed because the redirect URI is not whitelisted in the app’s Client OAuth Settings. Make sure Client and Web OAuth Login are on and add all your

Re: Email conformation problem

2017-05-17 Thread Ismail Sarenkapic
PTR record to > their domains as "spam". > On May 17, 2017 9:52 AM, Ismail Sarenkapic > wrote: > > lol, It is Django related question and can be solved with some of third > party libraries like allauth, scoialauth etc. > Please don't replay to the posts when y

Re: Email conformation problem

2017-05-17 Thread Ismail Sarenkapic
rk you email as unsafe. > > Regards, > > Andréas > > 2017-05-17 8:52 GMT+02:00 Ismail Sarenkapic >: > >> lol, It is Django related question and can be solved with some of third >> party libraries like allauth, scoialauth etc. >> Please don't replay

Re: Email conformation problem

2017-05-16 Thread Ismail Sarenkapic
> It is not a Django related question, sorry. > I can just suggest to look in 'SPAM' filters in you mailing agent. > > On Wed, May 17, 2017 at 9:24 AM, Ismail Sarenkapic > wrote: > >> I already fixed the problem tnx. >> but i still dont know why are my email

Re: Email conformation problem

2017-05-16 Thread Ismail Sarenkapic
I already fixed the problem tnx. but i still dont know why are my emails treated like potential fishing content, can you help me with that? On Wednesday, May 17, 2017 at 8:21:22 AM UTC+2, Constantine Covtushenko wrote: > > Hi, Ismail > > Did you try: > > *instance.user.ema

Email conformation system-how to set submited emails to recipient_list in signal

2017-05-16 Thread Ismail Sarenkapic
I successfully,manually sent an email to specific email address and activated the user but I cannot figure out how to: *1* Set submitted emails into recipient_list in my *post_save_activation_receiver* signal,since email field itself is defined in other model(if it is possible)? *2* Make thi

Email conformation problem

2017-05-15 Thread Ismail Sarenkapic
from django.conf import settings from django.contrib.auth.models import ( BaseUserManager, AbstractBaseUser ) from django.contrib import messages from django.core.mail import send_mail from django.conf import settings from django.core.validators import RegexValidator from django.db import mod

Re: get method inside class based view

2017-05-07 Thread Ismail Sarenkapic
it displays the form calling the "get" method in the view. When you > submit the form it usually does so to the same URL but with the POST > method. > > So in this case, GET => Displays form, POST => Handles form submission > > On 5/7/17, Daniel Roseman > wrote:

get method inside class based view

2017-05-07 Thread Ismail Sarenkapic
forms.py from django import forms from .validators import validate_url, validate_dot_com class SubmitUrlForm(forms.Form): url = forms.CharField( label='', validators=[validate_url], widget = forms.TextInput( attrs ={

Re: facebook/twitter sharing, and testing

2013-04-12 Thread sara ismail
didnt reallt get it, but thank u! On Wed, Apr 10, 2013 at 11:26 PM, Bill Freeman wrote: > > > > On Wed, Apr 10, 2013 at 11:55 AM, sara ismail > wrote: > >> can anyone help me?! >> >> On Wednesday, April 10, 2013 4:50:51 PM UTC+2, sara ismail wrote: >&g

Re: facebook/twitter sharing, and testing

2013-04-10 Thread sara ismail
can anyone help me?! On Wednesday, April 10, 2013 4:50:51 PM UTC+2, sara ismail wrote: > > im new to django, and i am working on a project, a selling and buying > website, where a user can post about a product that he/she wants to sell, > and my part right now is sharing posts f

Re: ANN: Mezzanine 1.0 released

2012-03-13 Thread Ismail
Awesome project, in the process of migrating all my custom built CMS solutions to Mezzanine. Never really found a CMS that was simple for the user to understand, and allowed easy customization. So have always built custom CMS/product catalogues for each client. Re-using apps where possible. On

Re: Help a Rails refugee - how to do site specific layouts?

2009-11-12 Thread Ismail Dhorat
yset), the documentation on templatetags will help you there. Regards, Ismail On Fri, Nov 13, 2009 at 6:36 AM, Andy Mckay wrote: > On 09-11-12 10:35 AM, Todd Blanchard wrote: >> I like the rails mechanism for specifying page layouts (boilerplate >> template that surrounds the currently

Databrowse: Loading a large number of records

2009-11-09 Thread Ismail Dhorat
uot;, line 248, in flush self._sock.sendall(buffer) error: (32, 'Broken pipe') I also see there has been a ticket logged for this issue about 2 years ago. http://code.djangoproject.com/ticket/4481 Has this been implemented? If not would would a simple paginate tag in the template suf

Re: Helsinki area djangonauts: Let's meet up

2009-11-08 Thread Ismail Dhorat
. Looking forward to hearing what happens Regards, Ismail http://twitter.com/ismail On Sun, Nov 8, 2009 at 9:12 PM, Lynoure wrote: > > On Nov 6, 12:18 pm, Jukka Välimaa wrote: > >> The meeting place is Kaisla, and time is two weeks from now, Thu >> 19.11, starting at

Re: Join .Net Community

2009-10-20 Thread Ismail Dhorat
wtf? On Tue, Oct 20, 2009 at 12:30 PM, Shawon_ wrote: > > Join .Net Community > > This group represents the Microsoft .Net community. All .net > programmers all around the world are welcome here. In this group > you'll find the latest releases of .Net related products, frameworks, > Upgradation,

Re: Django with lighttpd and fast_cgi

2009-09-18 Thread Ismail Dhorat
The regex looks fine, you need to stick this in your settings.py FORCE_SCRIPT_NAME = '"" /ismail On Fri, Sep 18, 2009 at 8:40 AM, blindrabb...@gmail.com wrote: > > I'm been trying to get django work with lighttpd for a while. I > finally got it working however the

Re: Running Django on Tornado's HTTP server

2009-09-14 Thread Ismail Dhorat
Interesting, i would like to see how tornado stacks up to Lighttpd? Regards, Ismail On Mon, Sep 14, 2009 at 7:29 PM, Antoni Aloy wrote: > > 2009/9/13 Antoni Aloy : >> 2009/9/13 Bret Taylor : >>> >>> I am one of the authors of Tornado (http://www.tornadoweb.org/)

Memory usage - Django + SQLITE

2009-09-14 Thread Ismail Dhorat
Hi Guys, My current setup for Django is as follows: Ubuntu, with Lighttpd and running django via FCGI using TCP in threaded mode. I a simple site, that uses SQLITE as the DB engine. Though i have noticed that as the DB grows, the memory usage for that particular process keeps increasing, is the

Re: turning login off in admin

2009-09-01 Thread Ismail Dhorat
Knight, I do not think this is the recommended use case, and would take some hacking. If you would like to update/edit/delete records from the DB i think its best to create standard forms which let you do all of that. http://docs.djangoproject.com/en/dev/topics/forms/ /i On Tue, Sep 1, 2009 a

Re: html Escape

2009-08-25 Thread Ismail Dhorat
If you have plain text (After you have removed out all HTML tags), a simple URLIZE filter would work, and allow links to be clickable. more details: http://docs.djangoproject.com/en/dev/ref/templates/builtins/#urlize On Tue, Aug 25, 2009 at 2:27 PM, Matias wrote: > Hi, > I think there is no s

Shameless Plug for local django group

2009-07-29 Thread Ismail Dhorat
us we can get together for some meets/hacking sessions http://groups.google.com/group/django-za /Ismail --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email

Re: IDE for Django and Ext JS

2009-07-29 Thread Ismail Dhorat
There are a few options: - Komodo Edit - Eclipse with plugin - WingIDE - TextMate (Mac) with django bundle - Coda (Mac) with Django extensions - Netbeans Python EA I have looked at all of these, and found Netbeans the best fit for me since i wanted something that worked on all platforms (Win, Ma

Re: ANN: Django 1.1 released!

2009-07-29 Thread Ismail Dhorat
Well done guys! Thanks for all the hard work. On Wed, Jul 29, 2009 at 9:21 AM, PanFei wrote: > i will try it > > On Wed, Jul 29, 2009 at 3:18 PM, Daniel Roseman wrote: > >> >> On Jul 29, 7:23 am, James Bennett wrote: >> > Tonight we're extremely proud to announce the release of Django 1.1, >>