select widget on forms

2024-08-29 Thread frank dilorenzo
I have a table listing the names of butterflies. I would like to create a user custom form with a select field populated by the list of butterflies. I can't find anything on the web to show me the proper syntax. I would appreciate any help. -- You received this message because you are subsc

[no subject]

2024-01-08 Thread frank dilorenzo
r. I am using postgreSQL 16 and it gives me the same error. I hope I gave you enough information here. Thank you frank- -- 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

Re: Ideas for Apps and Softwares.

2023-05-23 Thread Frank Chuka
You have to do hundreds or even thousands of unoriginal things in order to come up with one Original piece. It's like that with every profession that involves skill and creativity. Einstein probably read thousands of other people's paper before he came up with relativity. Picasso probably prac

configuration

2023-01-18 Thread frank dilorenzo
I cannot seem to resolve this configuration correctly. I have a list of suppliers. A supplier can have one profile A supplier can have many shipments. A shipment can have many species I have tried several ways and I always end up with some kind of circular problem. Any thoughts are appreciated.

Re: Add me to whatsapp

2022-10-10 Thread Frank Ezenwanne
I’m sorry I just saw the email. I thought it was to the django users group On Sat, 8 Oct 2022 at 3:19 AM, Rachid ABID wrote: > Please add me to whatsapp m'y number +212708071415 > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubs

no data returned with filter

2022-03-14 Thread frank dilorenzo
models.py: from django.db import models from specie.models import Specie from supplier.models import Supplier class Shipment(models.Model): supplier = models.ForeignKey( Supplier, null=True, on_delete=models.DO_NOTHING) created = models.DateTimeField(auto_now_add=True) label = models.CharField(m

Re: proper syntax for getting data many to many

2022-02-12 Thread frank dilorenzo
I apologize for anyone who looked at this. Apparently I had a bunch of typos. Can't read my own code. Problem was solved by me re-typing the code. frank- On Sat, Feb 12, 2022 at 7:07 AM frank dilorenzo wrote: > This is the model: > === > > from django

proper syntax for getting data many to many

2022-02-12 Thread frank dilorenzo
This is the model: === from django.db import models # Create your models here. class Artist(models.Model): name = models.CharField(max_length=100, unique=True) slug = models.SlugField(max_length=100, unique=True, help_text='Unique value for artist page URL, created from name') birt_na

Re: migrations: "no changes detected"

2022-02-09 Thread frank maduka
Make sure that You have registered you App you created and used it's models. Py to create database tables as well as registering models to the admin.py On Wed, Feb 9, 2022, 7:14 AM ramadhan ngallen wrote: > Your apps should be below django default apps > I.e below static files > > > On users you

Re: relations

2022-01-27 Thread frank dilorenzo
/models.py --- specie = models.ManyToManyField(Specie) Thanks for all the suggestions. frank- On Thu, Jan 27, 2022 at 9:17 AM frank dilorenzo wrote: > Well my friend, the only reason I have to do the imports is because each > model is in it's own app. In ev

Re: relations

2022-01-27 Thread frank dilorenzo
ule 'supplier.models' (most likely due to a circular import) (/Users/frankd/django" error. I'm not sure what the "partially initialized" is telling me. frank- On Wed, Jan 26, 2022 at 8:13 PM bnmng wrote: > Hi, > > You shouldn't have to import since the mod

Re: relations

2022-01-26 Thread frank dilorenzo
itialized module 'shipment.models' (most likely due to a circular import) (/Users/frankd/django_ I think I tried this before but couldn't resolve these errors. Any suggestions would be appreciated. frank- On Wed, Jan 26, 2022 at 10:53 AM frank dilorenzo wrote: > Thank you

Re: relations

2022-01-26 Thread frank dilorenzo
Thank you so much. Have a great day! frank- On Wed, Jan 26, 2022 at 6:51 AM bnmng wrote: > I would start by defining Supplier in your models.py, then Shipment with a > ForeignKey reference to Supplier > > I'm assuming (forgive me if I'm wrong) that not only can a shipme

relations

2022-01-24 Thread frank dilorenzo
I have tried several different ways but I cannot seem to get this right. What I have is a list of suppliers. Each supplier can have many shipments and each shipment can have many species. Seems simple enough but apparently I must be more simple. I need a suggestion of how to relate these tab

Re: translat using oscar framework

2022-01-07 Thread frank lucky
age.py makemessages with the flags you need. > > Remember, you're dealing with python not with Django as programming > language. > > If you don't have idea of what I'm writing, start with a simpler project. > > Regards > > Julio Cojom > > > El mié., 5

Re: translat using oscar framework

2022-01-05 Thread frank lucky
lifiedErrorId : CommandNotFoundException On Tuesday, January 4, 2022 at 8:24:30 PM UTC+3:30 Kasper Laudrup wrote: > On 04/01/2022 09.50, frank lucky wrote: > > > > mkdir locale i18n > > ln -s $PATH_TO_OSCAR i18n/oscar > > ./manage.py makemessages --symlinks --locale=de > > > > how i

translat using oscar framework

2022-01-04 Thread frank lucky
hi i use oscar framework for makeing ecoomerce web site now iwant to translat it and want to add other languges and ii'm working in windows and in its doc it says mkdir locale i18n ln -s $PATH_TO_OSCAR i18n/oscar ./manage.py makemessages --symlinks --locale=de how i do it in windows i

Deploying django in plesk

2021-08-25 Thread frank galan
Hi everybody. I've already deployed my app in Plesk, but the process is incomplete, . The static files not working, I mean the app can not read them. I know I need put them in the right position, but I can not achieve. Any help is welcome thanks a lot in advance -- You received this message becau

Django for beginners

2021-07-22 Thread Frank A. Gerbode, M.D.
Working through /Django for Beginners/ book. May need occasional help. Is there any help section for this book specifically? Thanks! --Sarge -- Frank A. Gerbode, M.D. (sa...@gerbode.net) 11132 Dell Ave Forestville, CA 95436-9491 Home phone: 707-820-1759 Website: http://www.gerbode.net &quo

cannot resolve FieldError

2021-07-18 Thread frank dilorenzo
I am getting this error message: raise FieldError("Cannot resolve keyword '%s' into field. " django.core.exceptions.FieldError: Cannot resolve keyword 'date' into field. Choices are: bad, created, doa, entered, id, non, para, received, released, slabel, specie, specie_id, supplier, supplier_id

Re: code question

2021-06-29 Thread frank dilorenzo
I thought I had been everywhere on the web but guess not. This really helped me a lot and I have it working now. Thanks a lot! frank- On Tue, Jun 29, 2021 at 7:57 PM Lalit Suthar wrote: > https://youtu.be/SNXn76SI1Ks > try this > > On Wed, Jun 30, 2021, 1:27 AM frank dilore

code question

2021-06-29 Thread frank dilorenzo
"base/dashboard.html", context) I tried to figure this out myself but apparently I can't. I want to convert this to a class based view if possible but I couldn't figure out how to send the context data to the .html file. Not sure it that is even possible. I am new

Re: circular imports error

2021-06-11 Thread frank dilorenzo
I hate to sound corny but you sir are my hero!. Thanks, it all works now frank- On Fri, Jun 11, 2021 at 2:43 PM Adam Stein wrote: > Since you said 3 separate apps, I assume each of these classes are in a > separate file. However, you have the line: > > from .models import Suppli

circular imports error

2021-06-11 Thread frank dilorenzo
m stuck here and cannot seem to resolve this error. I would truly appreciate any help on this. Thanks. Frank -- 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, sen

Re: model configuration

2021-06-06 Thread frank dilorenzo
Thanks Mike. I'll give it a try. Have a great day. frank- On Fri, Jun 4, 2021 at 8:42 PM Mike Dewhirst wrote: > Frank > > You don't have to import the class for the FK. Instead do a "lazy import". > > That means you just use "appname.Modelname"

Re: model configuration

2021-06-04 Thread frank dilorenzo
PM UTC-5 Mike Dewhirst wrote: > On 4/06/2021 1:39 pm, Mike Dewhirst wrote: > > On 4/06/2021 11:34 am, frank dilorenzo wrote: > >> I have the following conditions. > >> A supplier can have many shipments. > >> A shipment can have many species. > >> A ship

model configuration

2021-06-03 Thread frank dilorenzo
I have the following conditions. A supplier can have many shipments. A shipment can have many species. A shipment can have only one supplier. Species can belong to many shipments. No matter how I try I can't seem to configure the models correctly. I was hoping someone could help me on this.

Re: Hi group am new here

2021-04-04 Thread frank galan
It is not a translation from spanish at all, may be should came from another language, or it is an incomplete question and he was mean machine learning, could be? El dom, 4 abr 2021 a las 21:24, Kasper Laudrup () escribió: > On 04/04/2021 12.08, believeme mum007 wrote: > > > > Please i will be h

Re: ListView , Need Help !

2021-04-04 Thread frank galan
Could you show your html and css code ? El dom, 4 abr 2021 a las 16:57, ICT Giants Uganda () escribió: > You can also look into using bootstrap css. > > On Sun, Apr 4, 2021 at 8:01 AM 'Amitesh Sahay' via Django users < > django-users@googlegroups.com> wrote: > >> This is related to front-end codi

Hello mates

2021-03-29 Thread frank galan
Im catching a model in a select, using ajax to request, so Im receiving an error I can,t solve Im get an empty dict, the error is : error: "'str' object has no attribute 'toJSON'". Its occurrs when I try to print the data in console I created a function into the model to convert this in dict, la

Re: hi mates trouble with ajax 500 error server

2021-03-28 Thread frank galan
Thanks a lot, you're right. I solved it. Thanks El dom, 28 mar 2021 a las 0:57, Kasper Laudrup () escribió: > On 27/03/2021 21.41, frank galan wrote: > > thanks, here is the server error response > > > > NameError: name 'JsonResponse' is not defined > &g

Re: hi mates trouble with ajax 500 error server

2021-03-27 Thread frank galan
acion/proyectos_django/localsys/backoffice/views/sold.py", line 72, in post return JsonResponse(data, safe=False) NameError: name 'JsonResponse' is not defined [27/Mar/2021 20:39:37] *"POST /dashboard/backoffice/new_sold HTTP/1.1" 500 96481* El sáb, 27 mar 2021 a las

hi mates trouble with ajax 500 error server

2021-03-27 Thread frank galan
Im receiving a 500 server error, when I trying to obtain data wiith ajax from my model. My details are as follows: *Model:* class Item(models.Model): """Items Product model""" operation = models.ForeignKey(Operation, on_delete=models.CASCADE) brand = models.ForeignKey(Brand, on_del

maximum recursion depth exceeded

2021-02-10 Thread Frank Maruf
In signal i have been trying to doing this . i'm new at Django. help me with this: class Examiner(models.Model): #just think i have saved (Primary School Certificate) in to my database. examiner_title = models.CharField(max_length=150) slug = models.SlugField(max_length=100, unique=True,blank

Re: Hello

2021-02-01 Thread Frank Chuka
Hi On Mon, Feb 1, 2021, 7:53 PM sakshi jain wrote: > Hi > > On Mon, Feb 1, 2021, 22:16 Frank Chuka wrote: > >> Hi everyone.Am Frank,from Lagos Nigeria.please is there anyone who is >> from Nigeria? >> >> It's almost impossible to get a Django job here i

Re: Hello

2021-02-01 Thread Frank Chuka
1, 2021 at 6:50:50 PM UTC+1 kcal...@gmail.com wrote: > >> Bro it's crazy... I'm from Abuja Nigeria. I'm facing same thing l, though >> I'm looking for foreign remote jobs... And I have been doing Django for >> about 4years plus now... Stay strong bro, I

Hello

2021-02-01 Thread Frank Chuka
Hi everyone.Am Frank,from Lagos Nigeria.please is there anyone who is from Nigeria? It's almost impossible to get a Django job here in Nigeria.if you somehow find one they will request for a computer science degree(which I don't have one),don't know if you're going through

Re: Static Folder not loading

2021-01-29 Thread Frank Cipolone
. Static_URL is important as it will be the file name target it will look for when running collectstatic. Try: STATIC_ROOT = os.path.join(BASE_DIR, ‘static’) STATIC_URL = ‘/static/‘ STATICFILES_DIRS = [ os.path.join(BASE_DIR, ‘trydjango/static’) Best Regards, Frank Cipolone M: (856) 993-4819 E: fcipol

Re: Static Folder not loading

2021-01-28 Thread Frank Cipolone
Whats your STATIC_DIRS, STATIC_PATH, and STATIC_URL and what it the tree to the folder your static is in? > On Jan 28, 2021, at 1:26 PM, hari49pf wrote: > > Yes, i did it created a folder with css & other files, but no use. > > On 28/01/21 11:49 pm, Larry Martell wrote: >> On Thu, Jan 28, 2021

Re: 127.0.0.1 refused to connect.

2020-12-18 Thread Frank Chukka
try running the server without including the ip or port,just run "python manage.py runserver" only. The way I tend to solve problems like this is I reduce the search space by ruling out what is obviously not the issue(e.g I don't think you have to reinstall your os or that it has anything to do wi

Re: 127.0.0.1 refused to connect.

2020-12-18 Thread Frank Chukka
Is it that your local server is running but you're unable to access the requested page or "python manage.py runserver" command is not running d server? A little bit of information will be very helpful On 18 Dec 2020 5:29 pm, "Parul." wrote: > i am not able to connect , i tried to use 0.0.0.0:8000

Re: hi

2020-11-01 Thread Frank Cipolone
ving emails from it, send an > email to django-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/CA%2BXgZWaXCEzHqbykMaf8%3DdxCkxX-vEoLBF6LHPt77cKk4B9HHw%40mail.gmail.com > <https://groups.google.com/d/msgid/djang

Re: Check this out guys

2020-09-17 Thread Frank Chukka
Awesome stuff On 16 Sep 2020 8:42 am, "712189512" wrote: > Hi guys i have build this *https://connectdjango.com > * platform with django and i want you to check > it out,you can post your questions there and and also post some tutorials > too,let's all connect and keep

Re: I need guide in Django web development

2019-12-29 Thread Frank Cipolone
google.com/d/msgid/django-users/ccc5e535-fdbf-4e45-9b7b-da4d500b2e92%40googlegroups.com > . > -- Best Regards, Frank Cipolone (856) 993-4819 fcipol...@gmail.com https://www.redsnip8.host -- You received this message because you are subscribed to the Google Groups "Django users"

Re: user Form error

2019-06-06 Thread terry frank
Hello, from which repos ? On Thu, Jun 6, 2019 at 7:50 PM anchal agarwal wrote: > Hello, > I am making a simple user form but my form data is not saving.It is > showing this error > 'UserForm' object has no attribute 'save' > Here is my code. Please tell me where i am wrong > views.py > class Us

Re: Looking for a Django Co-Founder.

2019-02-01 Thread Frank john thompson
Hello Zack Am interested please give me the details let's get started here is my whatsapp number (+2348123120639) thanks Frank. On Fri, Feb 1, 2019, 8:31 PM Alison Mukoma Hello Zack, > Perhaps we could all meet using zoom which is also free and effective. > we may only need a meetin

Begginner

2019-01-30 Thread Frank john thompson
how do i build webside on python 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 post to this group,

Re: Interfaz administrativa, login con SSH

2018-06-11 Thread Frank Mascarell
Gracias por vuestras recomendaciones de seguridad, muy interesantes. Después de recapacitar con todo esto, me planteo lo siguiente; si estamos desarrollando una tienda online, donde la base de datos se encuentra en un host remoto, y los administradores de la tienda deben entrar en ella diariament

Re: Interfaz administrativa, login con SSH

2018-06-10 Thread Frank Mascarell
Vijay, thanks for the help, but the authentication of two factors seems quite uncomfortable, considering that an administrator can enter every day, several times a day, having to depend on a mobile device for each login. I have to rethink the problem, perhaps by directly accessing postgres, thr

Interfaz administrativa, login con SSH

2018-06-10 Thread Frank Mascarell
Hola, lo siento por los errores, estoy usando google-traductor :) Contraté un VPS en Digital Ocean, instalé Django-Postgres y todo funciona correctamente. Ahora quiero aumentar la seguridad de la interfaz administrativa de Django, Quiero que los administradores del sitio inicien sesión usando SS

Interfaz administrativa, login con SSH

2018-06-10 Thread Frank Mascarell
Hi, sorry for the mistakes, I'm using google-translator :) I hired a VPS on Digital Ocean, installed Django-Postgres and everything works correctly. Now I want to increase the security of Django's administrative interface, I want site administrators to login using SSH, eliminating authenticatio

Re: Group Permissions programmatically

2017-07-31 Thread Frank Semaganga
r_permissions.add(...) # add actual Permission objects > here > >> On 31 Jul 2017, at 10:23, Frank Semaganga wrote: >> >> Hi! >> >> I am having a challenge . My aim is to be able to assign some group >> permissions when the group is created. In admin.

Group Permissions programmatically

2017-07-31 Thread Frank Semaganga
Hi! I am having a challenge . My aim is to be able to assign some group permissions when the group is created. In admin.py I have a custom GroupAdmin class on which I have the function save customized but the challenge is everything else get saved and reflected on admin page including user pe

Re: DSasS(Data Science as Service)

2017-06-16 Thread Frank Gau
+1 for this excellent summary! On Fri, Jun 16, 2017 at 05:09:11PM +0200, Melvyn Sopacua wrote: > On Friday 16 June 2017 04:45:22 Arshpreet Singh wrote: > > > > So basically there will be few ML models and I will feed those some > > variables and will get some output. Before writing any kind of

Re: Django project beginner

2016-12-26 Thread ureal frank
whats the URL for this project? I want to learn with it too. Thanks. > On 26 Dec 2016, at 14:05, hai luo wrote: > > you could follow the steps in django site,if you want to find a project ,go > to github,there is a nice project "bootcamp". -- You received this message because you are subscri

New Record vs Updating Existing

2016-10-14 Thread Frank Semaganga
Hello Team, I am having challenge with my views/dB. I am receiving http data and successfully save to the models but the problem is sometimes the data get into new dB row and sometimes is updating the existing dB row. I want it to insert new row every time data is received. What could have b

Re: ImportError: No module named south

2016-05-20 Thread Frank Wiles
sary PIP dependencies for you. Hope that helps! Frank Wiles Revolution Systems | http://www.revsys.com/ fr...@revsys.com | (800) 647-6298 On Fri, May 20, 2016 at 5:07 AM, Priyadharshini S wrote: > When i trying to install RatticDB on ubuntu 12.04 > I got this error please help me to solve &

Re: Turn off migrations completely in Django 1.7

2015-11-20 Thread Frank Malina
RE: Carl Meyer >> To my knowledge, out of the many hundreds of >> thousands of Django users, you are the first and only one to request a >> way to turn off migrations entirely. No he isn't, Django migrations are ridiculous waste of time, never work and make me angry. I work with Django from v0.

Re: Where is the best place to get assistance installing Red Hat, Oracle and Django onto a VPN?

2015-06-10 Thread Frank Bieniek
This Article might help: Django, Redis, Postgres, DataVolume in a Docker Environment: https://realpython.com/blog/python/django-development-with-docker-compose-and-machine/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this

Re: Custom password validation

2015-04-14 Thread Frank Bieniek
"pass_form": PasswordChangeForm}, name = 'userena_password_change'), ... cheers Frank Am Freitag, 10. April 2015 21:15:17 UTC+2 schrieb larry@gmail.com: > > I am trying to add custom password validation to the create user and > change password admin forms. I did not s

Re: {{STATIC_URL }} or {% static "...." %} What`s the correct to use?

2015-03-20 Thread Frank Bieniek
(r'^static/(?P.*)', 'django.views.static.serve', {'document_root': settings.STATIC_ROOT, 'show_indexes': True}), ) This allows static file serving from the runserver - only for local development!! thanks Frank Am Freitag, 20. März 2015 01:59:08 UTC+1 schrieb

What forms library do you pick for a new Project?

2015-01-09 Thread Frank Bieniek
pick, and why? Thanks Frank -- 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, sen

Re: Django vs ExtJS

2014-12-30 Thread Frank Bieniek
tps://www.python.org/>*. ... Thanks Frank Am Dienstag, 30. Dezember 2014 11:44:20 UTC+1 schrieb Joris Benschop: > > Thank you both for these answers. Personally Im already convinced of > Django, but the trick is to convince others. The strong benefit of java is > that it is really e

Re: Django Models PrimaryKey not incrimenting I dont understand this framework and the documentation is poorly written.

2014-07-16 Thread Frank Bieniek
ine documentation Two Scoops of Django http://www.amazon.com/Two-Scoops-Django-Best-Practices/dp/098146730X/ Test driven development in python http://www.amazon.com/Test-Driven-Development-Python-Harry-Percival/dp/1449364829/ Hope this helps Frank Am 16.07.14 19:08, schrieb G Z: so I added a db trigger

Re: django.core.exceptions.AppRegistryNotReady

2014-07-08 Thread Frank Bieniek
lated_name='accounts') Simply do not use get_user_model() in model definitions. Thanks Frank -- 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 d

Re: django 1.7 upgrade + tastypie -> AppRegistryNotReady

2014-07-02 Thread Frank Bieniek
django model form can, deferr their meta model handling, I was looking for some hints for building a workaround. Thanks Frank Am 02.07.14 18:12, schrieb Tom Evans: On Wed, Jul 2, 2014 at 3:48 PM, Frank Bieniek wrote: Hi all, does currently anybody upgrade his django 1.6 projects with south

django 1.7 upgrade + tastypie -> AppRegistryNotReady

2014-07-02 Thread Frank Bieniek
fork idea" would be great. Thats the problem: class MyResource(ModelResource): ... class Meta: queryset = AnyModel.objects.all() Some models just hit the AppRegistryNotReady Exception... Any Ideas/Hints/Magic are welcome Thanks Frank -- You received this message becau

Re: How to host multiple instances of the same app with Windows Apache & WSGI?

2014-02-25 Thread Frank Bieniek
symlinks and use different wsgi files. (wsgi file uses different settings) But I am not an dev ops guy Thanks Frank Am 25.02.2014 13:02, schrieb DJ-Tom: Hi, currently I'm using the following configuration to host a Django appliaction: # WSGI Configuration WSGIScriptAlias

Re: Integrate with an ADFS Server for Login

2014-02-25 Thread Frank Bieniek
directory django https://djangosnippets.org/snippets/2899/ Thanks Frank Am 25.02.2014 11:44, schrieb Me Sulphur: Hi, For one of our new deployments we need to replace our authentication (django's default) with the client's Single Sign On (SSO). The client uses ADFS 2.0 for SS

Re: when I pip-installed django-debug-toolbar, the latest version of Django was installed automatically.

2014-02-17 Thread Frank Bieniek
: install django-debug-toolbar but ignore all dependencies of this package. This should cleanup your environment Cheers Frank Am 17.02.14 21:21, schrieb jmindv...@gmail.com: Hi Frank, Thank you for your advice but the version is still 1.6. I straggle with getting it back to the version 1.3

Re: when I pip-installed django-debug-toolbar, the latest version of Django was installed automatically.

2014-02-17 Thread Frank Bieniek
... hope this helps Frank http://pip.readthedocs.org/en/latest/user_guide.html#configuration Am 17.02.2014 20:41, schrieb jmindv...@gmail.com: Hello, when I pip-installed django-debug-toolbar, the latest version of Django was installed automatically. Not my intention. I got warning as below

Re: migrations to custom user model - complex project

2014-01-27 Thread Frank Bieniek
Thanks Arnold, for the details. Am 25.01.14 21:22, schrieb Arnold Krille: We did something similar, we switched from djangos own user model + our profile to just using our profile extended by email and password (no username anymore and no openid (yet)). What you need to do depends on whether yo

migrations to custom user model - complex project

2014-01-24 Thread Frank Bieniek
already done Any hints are welcome - I googled already, but have not found a solution that does not break groups or other fks... Thanks Frank -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiv

How to make a dynamic list in Django

2014-01-10 Thread Frank Jaworski
Hello, Essentially I am trying to take some pre-existing data for a user, populate a "list" with it, and then add/delete any item I wish from that list and display cost and other information for the updated list. I don't want page reloading or anything like that. I know the concept of ajax/j

Re: install Django locally

2014-01-10 Thread Frank Bieniek
Hi, It sounds you are looking for virtualenvironments, http://www.virtualenv.org/en/latest/ It helps you to put everything related to your project in one environment. https://docs.djangoproject.com/en/dev/topics/install/#installing-an-official-release-with-pip Cheers Frank Am 10.01.2014 13:34

Django Modules for comparative "shopping cart" and data analysis

2014-01-06 Thread Frank Jaworski
Hello, Given the task of creating an application that presented the user with a pseudo-shopping cart they could add and subtract to see the potential cost and savings over a period time with graphing and analysis of said comparisons, what does Django have to offer in terms of existing modules?

New to Django; Question

2013-12-30 Thread Frank Jaworski
I am new to Django; I have a legacy database I do not control with some information regarding a user and a database on my server with data pertaining to something that user is doing. I want to take some information from each database via the ORM methodology Django employs and display it on a w

Re: Error Doing python manage.py syncdb in django pyBB

2013-12-15 Thread Frank Bieniek
django.utils.simplejson is deprecated; use json instead. Hi Alok, it seems pyBB is not django 1.6 compatible - simplejson got deprecated in 1.6 just my 2 cents Frank Am 14.12.13 15:15, schrieb Alok Nag: Hello Experts, I am newbie to Django/Python. I am trying to setup a forum app using

Re: Making sure I'm not missing out on some must have Django apps

2013-12-15 Thread Frank Bieniek
Hi, I would add some: django-userena - user self registration django-organizations - user and organizations django-guardian - object level permissions django-paranoia - paranoid security stuff django-cache machine / johnny-cache Thx Frank Am 15.12.13 17:43, schrieb Some Developer: Right so it

Re: Instant Hosting for Django-CMS...No Setup Needed...Demo Inside

2013-12-12 Thread Frank Bieniek
Hi Mark, you have debug turned on. http://198.154.98.107:8000/themes/h-free-software/ and a broken theme. Good luck Am 12.12.2013 20:02, schrieb Mark Moss: *_Top 3 challenges of a django-cms user:_* 1. Are you trying to use django-cms, but got tangled with the complex setup process? 2.

Re: Experiences with A/B testing?

2013-12-03 Thread Frank Bieniek
to play around with features in your app go for waffle - if you want to improve the sales converstion go for a hosted js based version. My 2 cents Frank Am 03.12.2013 19:43, schrieb Anu G: I have also been looking into A/B testing. Did you use any of the above you mentioned...? If so which

Re: Upgrading from 1.5 to 1.6 - problem with Apache

2013-11-14 Thread Frank Bieniek
.conf.urls.handler404>, handler500 <https://docs.djangoproject.com/en/dev/ref/urls/#django.conf.urls.handler500>, are now available through django.conf.urls <https://docs.djangoproject.com/en/dev/ref/urls/#module-django.conf.urls> . Thats all Happy updating Frank Am 14.11.2013 1

Re: How to Query account/profile information for multiple account and allowing user edit or update acount

2013-09-30 Thread Frank Bieniek
Please try, django-userena, or django-registration, both deal with userdetails. Thx Frank Am 30.09.13 20:33, schrieb Okorie Emmanuel: I have two problems 1. How can i populate the account information of each user, this what i have done but only info on user models populates, the

Re: django-ssl-auth

2013-09-29 Thread Frank Bieniek
Please check this post http://www.mail-archive.com/modwsgi@googlegroups.com/msg04658.html Thanks Frank Am 29.09.13 21:52, schrieb Liam Thompson: Hi everyone I am running Django 1.5.2, using Apache 2.2.22, (WSGI) on Linux Ubuntu 12.10. I am a Django newbie and am trying to get my head around

Re: Restrict access to user-uploaded files to authorized users

2013-09-26 Thread Frank Bieniek
Django filer might be usefull http://django-filer.readthedocs.org/en/latest/secure_downloads.html Am 26.09.13 03:24, schrieb m1chael: I think Xsendfile is what you want On Wed, Sep 25, 2013 at 12:51 PM, Mattias Linnap > wrote: > Are there any obvious solutions

Re: How to share model/data cross django project

2013-09-24 Thread Frank Bieniek
have investigated django guardian - object level permissions? Thanks Frank Am 24.09.2013 16:12, schrieb Dig: Hi, Please let me repeat my question shortly, I want to access the same database from 2 different django project/app. Can anyone help me? Thanks. Regards, Dig On Sep 20

Re: Django-cms + Wymeditor + Heroku + AWS s3 + Cors

2013-09-07 Thread Zach Frank
Having same problem.. did you figure anything out? Z On Thursday, October 11, 2012 12:57:30 PM UTC-5, Matteo Suppo wrote: > > I found this: > http://comments.gmane.org/gmane.comp.python.django.django-cms/1202 > > and I decided to use tinymce for now. It's not solved though. I will do > somethin

Re: Django-cms + Wymeditor + Heroku + AWS s3 + Cors

2013-09-07 Thread Zach Frank
Having this same problem... did you fix it? I'm using heroku, django-cms, s3 for static files and i'm getting the same domain origin error.. any new insights appreciated. Z On Thursday, October 11, 2012 12:57:30 PM UTC-5, Matteo Suppo wrote: > > I found this: > http://comments.gmane.org/gmane.

Re: Install MySQL for Python Django on my Windows PC

2013-08-06 Thread Frank Bieniek
Take a WAMP and add mod_python to apache for full blown compatibility. or just use the mysql form the wamp system. thx Am 06.08.2013 17:38, schrieb Glenn Vulkers: Hello , I'm wondering how I can install Mysql to use in Python Django on my Windows PC. I tried to install Ubuntu on a Virtual PC

Re: [Errno 13] Permission denied: '.cache' - where is the directory I need to change permission

2013-08-04 Thread Frank He
ministrator to upgrade your permissions. You will have the > same problem later when django apps try to create folders to store images > or something other but it depend from your installed apps. > > > > On Saturday, August 3, 2013 5:28:51 PM UTC+2, Frank He wrote: >> &

[Errno 13] Permission denied: '.cache' - where is the directory I need to change permission

2013-08-03 Thread Frank He
I am now deploying my django project using apache mod_wsgi, after a lot effort, it is near the end. But now when I run my project directly, I am stuck with a permission issue, and got this error: OSError at / [Errno 13] Permission denied: '.cache' Request Method: GET Request URL: http://10.

Re: London based Django Dev: UX/UI (£300 per day)

2013-07-02 Thread Frank Bieniek
Hi George, for that kind of money do not expect to get a senior Cheers Frank Am 02.07.2013 21:57, schrieb George Kazarian: By way of introduction my name is George and I'm the founder and CEO of www.therecipekit.co.uk <http://www.therecipekit.co.uk/>. We are a London b

Re: Sharing session among multiple domains (generic web development question)

2013-06-13 Thread Frank Bieniek
HI Tom, what about an openid single sign on. there is a python package out there doing it. openid_provider from openid_provider.models import OpenID, TrustedRoot and glue it together with django userena and you have your sso. Thanks Frank Am 12.06.13 13:38, schrieb Tomas Ehrlich: Hi Tom

Re: Problem Django Admin app is read only!

2013-06-06 Thread Frank Bieniek
Hi, who is serving your media files? apache? In debug mode django is not delivering them, if it is run through mod_wsgi Greets from Ratingen Frank Am 06.06.13 17:08, schrieb Enaut Waldmeier: Hi, I have a problem with django-admin whenever I deploy my page to the apache server with DEBUG

Re: Best Pratice To Implement User Types

2013-06-04 Thread Frank Bieniek
transitions and the access limitations every usergroup has. A user has a PaymentHistory, with several PaymentEntries. And the last PaymentEntry knows the related group Membership. Just my 2 cents. Frank Am 04.06.2013 08:51, schrieb coded kid: I'm building a django project and I want to

Re: Cache witin a single transaction / session ?

2013-05-24 Thread Frank Bieniek
Hi try johnny-cache http://pythonhosted.org/johnny-cache/ Thx Frank Am 24.05.2013 08:50, schrieb brycenesbitt: |Does there exist a lightweight cache option for django which persists data in a single session. For example: {{gallery.tiles.count}} item{% if gallery.tiles.count != 1 %}s{% endif

Re: Multi Client Django System

2013-05-23 Thread Frank Bieniek
ode here . hope this helps. basically you have a slugged organization, and a delegation view - the delegation view does the magic. here is another solution to your problem - classed based view mixins for multi account setups: http://django-organizations.readthedocs.org Welcome Frank Am 23.0

Re: Authentication with Email

2013-03-20 Thread Frank Bieniek
Hi, take a look at http://www.django-userena.org/ customziable login and registration. Thanks Frank Am 20.03.2013 01:09, schrieb fire_water: Hi, I am fairly new to Django and have started building a website that will require users to create an account with a username, email address, and

django / django cms + responsive

2013-03-14 Thread Frank Bieniek
Hi Guys, what are your preferred apps to turn django or django cms into a responsive website? What are your recipes? Thanks Frank -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving e

Problem with ManyToManyField related table search

2013-03-13 Thread Frank Schima
linux2', '/usr/lib/python2.6/lib-tk', '/usr/lib/python2.6/lib-old', '/usr/lib/python2.6/lib-dynload', '/usr/local/lib/python2.6/dist-packages', '/usr/lib/python2.6/dist-packages', '/usr/lib/python2.6/dist-packages/PIL', '/u

  1   2   3   >