I just installed Python 2.6.1 and Django 1.0.2 on Windows.
I am new to Python and Django and am following the tutorial for
Django.
Per tutorial, I am setting the 'DATABASE_ENGINE' to sqlite3 in
settings.py file. However, I get the following error when I run
'python manage.py synchdb':
django.co
Karen, Thank you for the tip. I am actually using Cygwin. And, I was
puzzled by Python version myself. I thought it may be some internal
versioning for 2.6.
I will give a try with Windows prompt. Appreciate your help.
Thanks,
Sandeep
On Feb 13, 9:41 am, Karen Tracey wrote:
> On Fri, Feb
Hello all,
In my django application, all the data of different clients are
entered. Sometimes data of even same client is also entered. Now what
I require is to get all the data of the client when it asked for.
The views I used is:
---
Can I apply some operations on the views ( of database) that are
created by me? Eg: to do sum of some filtered entries. If yes, then
how?
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the Google Groups
% endif %}
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}
When all this is applied, it creates a view out of 2 tables i.e Amount
and ClientJob without using foreign key. Now I want to have sum of the
total and net_total fields for the views generated.
--
Sandee
) and add
> it to the client. Python allows you to add any value you >want to any object.
>
Thank you for your suggestions. :-)
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the Google Groups
&q
Is there any way of having a field in table, declared both as foreign
key as well as primary key?
I want something like this in models:
publisher = models.ForeignKey(Publisher,primary_key=True)
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received
axid': maxid}, context_instance=RequestContext(request))
Am I wrong somewhere? How should I do this? Please help!!
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the Google Groups
"Django users"
On Fri, Mar 9, 2012 at 4:31 AM, Ramiro Morales wrote:
> On Thu, Mar 8, 2012 at 4:44 PM, Sandeep kaur wrote:
>> job_no_id = client.job_no
>> ...
>> Am I wrong somewhere? How should I do this? Please help!!
>
> Yes, t
uest):
id = ClientJob.objects.aggregate(Max('job_no'))
maxid =id['job_no__max']
if request.method == 'POST':
form =AmountForm(request.POST)
if form.is_valid():
cd = form.cleaned_data
d = ClientJob.objects.aggregate(Max('job_no'))
maxid =id['job_no__max']
if request.method == 'POST':
form =AmountForm(request.POST)
if form.is_valid():
cd = form.cleaned_data
#job_
.objects.aggregate(Max('job_no'))
maxid =id['job_no__max']
if request.method == 'POST':
form =AmountForm(request.POST)
if form.is_valid():
cd = form.cleaned_data
#job_no
entries in table where 2 columns are equal, there field
should be assigned a string "OTHER" and other_field should remain as
such.
How can I give such query in shell.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because y
nge (field already equals field), I assume this isn't an
> issue.
>
You are great, sir.
Thank you.
The query successfully updated the field column as was required.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you
a counter field in a table, then in models.py, add this :
job_no = models.AutoField(primary_key=True)
But if you want the counter in tables in the template file then add
{{forloop.counter}} as your table field.
Correct me if I am wrong anywhere.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail
return render_to_response('index3.html',
context_instance=RequestContext(request))
But it gives TypeError as :
"cannot convert dictionary update sequence element #0 to a sequence"
Is there anything wrong in above code?
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: san
views to
the users based on there permissions ?
Thanks in advance.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to djan
On Wed, Jul 18, 2012 at 3:13 PM, kenneth gonsalves
wrote:
> On Wed, 2012-07-18 at 14:10 +0530, Sandeep kaur wrote:
> request.user
Thank you sir , this was helpful. :)
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because y
doesn't support java, how would our could
run?
Help would be really appreciated.
Thank you.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to t
$("select#test").attr('disabled', false);
});
//}
});
$("select#test").change(function(vent) {
if ($(this).val() == -1) {
y guidelines, or is this even
> achievable?
>
Why don't you use sessions for the same. That is, in a session find
number of clicks on the pages by a user, then save it in database.
Then just get the page that has maximum clicks, that will be the most
popular page.
Just a wild idea.
:
```Cannot assign "'b593c61453d7aad199078c66b9ad6b30'":
"ClientJob.sess" must be a "Session" instance.
I am a bit unclear about using sessions in django, so be a little elaborative.
Thank you.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: san
one bill and receipt. But for each different material, different jobs
are created. So, I thought it could be achieved by storing the session
in which the user logged and then get the bill generated based on that
session.
If you find it a vague solution, do tell the most optimum solution.
--
S
profile.sess = Session.objects.get(session_key=request.session.session_key)
>
Thanks a lot. This worked. :)
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
T
On Fri, Aug 17, 2012 at 1:28 PM, Sandeep kaur wrote:
> I am using session foreign key in my table.
> if not request.session.exists(request.session.session_key):
> request.session.create()
> profile.sess = request.session
check testsTest
NameQuantityCosts
{% if test %}
{% for tests in test %}
{{tests.name }}{{tests.quantity
}}{{tests.cost }}
{% endfor %}
{% endif %}
{% else %}
No material found
{% endif %}
Please do point me out where
}}
{{ clients.receipt_no }}
{{clients.name_and_address}}
{{amounts.field}}
...
...
This code slows down the system to a great extent. Please suggest me
an alternate and better solution.
--
Sandeep Kaur
E-Mail: mkaurkha
of cd, making it kinda
> useless?
>
> should here be a cd = ObjectName() in there?
>
According to me, he need not to assign cd, because it is then not used
anywhere to clean the form data.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this mes
('Date information', {'fields': ['pub_date']}),
]
inlines = [ChoiceInline]
list_display = ('question', 'pub_date')
list_filter = ['pub_date']
search_fields = ['question']
admin.site.registe
anage.py shell
>>> from django import forms #input
>>> forms.Form #input
#output
If you don't get this output, you are using old version of Django. Use
new version.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received
f the
> rows that can be added by the add button.
> Can anybody tell me how would i solve this problem. Any help would be
> highly appreciated.
>
This may be helpful :
http://stellarchariot.com/blog/2011/02/dynamically-add-form-to-formset-using-javascript-and-django/
--
Sande
his? What could be the problem?
>
When we exclude a field from a form, that field become invisible. But
as we know, that it is mandatory to fill the foreign key value (else
the form will become invalid), so you should by some way give some
value to foreign key field.
--
Sandeep Kaur
E-Mail: m
mproperlyConfigured: Error loading MySQLdb module:
> No module named MySQLdb
>
Try this :
sudo apt-get install python-mysqldb
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the Google Groups
"Djan
if this helps :
https://github.com/vsajip/MySQL-for-Python-3
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-us
Sorry there is no employees yet :(
> {% endif %}
>
>
>
I don't find any errors here. I think you are always getting
employees, that's why only if part works and else part doesn't work.
:p
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpres
On Mon, Nov 19, 2012 at 4:24 PM, muhammed riyas
wrote:
> no even there is no employees i didnt got it
>
Show your views too.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the Google Groups
&
ant
is to get old values from table: Job and ClientJob and then after
editing get saved in tables: EditJob and ClentEditJob.
Is this possible? Your help will be appreciated.
Thank you.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message be
On Thu, Nov 22, 2012 at 4:54 PM, Sergiy Khohlov wrote:
> Have you tried to change instances to your new tables ?
>
If I try instance of new table, I won't get the old values that I need to edit.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You re
On Thu, Nov 22, 2012 at 5:32 PM, Sergiy Khohlov wrote:
> you can set values in form via form __init__
>
Values of some other instance? How?
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed
don't say my code is
correct, Because if it would be, I would have got my results. Please
help me change it to correct one.
What I want to do :
Get instance of one table, which after editing get saved to some other table.
What I get :
I get values of one table and after editing it get saved to
27;))
>
> But get the following error:
> IntegrityError at /report/header/
> (1048, "Column 'job_id' cannot be null")
>
> Please anybody tell me where i am wrong?
>
Hope this helps you.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpre
2.7.egg/django/utils/importlib.py
> in import_module, line 35
> Python Executable:
> /home/frank/Projects/python/django/techjobsea.com/baseline27/bin/python
> Python Version: 2.7.3
>
Are you sure, you followed all the installation steps, especially step 3 in :
https://docs.djang
t.com/en/dev/ref/settings/#std:setting-TEMPLATE_LOADERS>setting.
It’s in there by default, so you’ll only need to change this if
you’ve changed that setting.
3. Make sure you’ve installed the sites
framework<https://docs.djangoproject.com/en/dev/ref/contrib/sites/#module-django.contrib.sites>
.
'django.contrib.admin',
'django.contrib.admindocs',
'djangopractice.blog',
)
Hope this helps.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the Google Groups
&q
the two applications?
Your help will be appreciated.
Thank you.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to dj
will help you :
p = table(material =material, ...[other fields of table to be saved])
p.save()
Here table is your table where you want object value to be saved.
Hope this helps you.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because
stand how to use
south. Can you provide me some tutorial for the same.
Thank you.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, s
-- Forwarded message --
From: Javier Guerra Giraldez
Date: Wed, Jan 23, 2013 at 3:34 AM
Subject: Re: Database Transaction
To: django-users@googlegroups.com
On Tue, Jan 22, 2013 at 11:54 AM, Sandeep kaur wrote:
> Yes, I also thought south will be helpful but when we need to
>
> import oldapp.models
> import newapp.models
>
> for oldrec in oldapp.models.MyModel.objects.all():
> newapp.models.MyNewModel.create (newfield=oldrec.oldfield,..)
>
Sorry, this mail was sent by mistake.
And thank you Javier, I think this is the only solution now.
by default acessible in the forms in the form of
drop down. You just need to define the form of your model and the in
template file write this :
{% csrf_token %}
{{ form.as_table }}
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sand
On Mon, Feb 11, 2013 at 7:42 PM, frocco wrote:
> Hello,
>
> I have some logic I want to put in a model, but it requires know the current
> user logged in.
> Is there a way to get this?
>
This gets the current logged in user :
current_user = request.user
--
Sandeep Kau
.is_active %}
{% extends "base_client.html" %}
{% else %}
{% extends "base_noclient.html" %}
However this code doesn't work.
What should be done. Your help will be highly appreciated.
Thank you.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress
On Wed, Mar 6, 2013 at 2:39 AM, Shawn Milochik wrote:
> Instead of extends, you could use the "include" directive.
>
"include" worked but destroyed all the structure of the template. :-/
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
" portion will automatically send the base_template
> variable into your template.
>
Thanks a lot. You explained everything so gracefully.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the Google G
On Thu, Feb 28, 2013 at 2:32 AM, vijay shanker wrote:
> hey, i want to write a shopping cart app, please provide some inputs, useful
> information, suggestions etc for doing it right .
Have a look at this too.
https://github.com/bmentges/django-cart
--
Sandeep Kaur
E-Mail: mk
On Thu, May 23, 2013 at 8:29 PM, Luggaz wrote:
> I don't know what I dd but it seems to work now!
>
mod wsgi installation could have also solved he purpose, using this command :
$sudo apt-get install apache2 libapache2-mod-wsgi
--
Sandeep Kaur
E-Mail: mkaurkha...@gma
.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
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...@google
s that need to be made. There is a
urls.py file where we need to change the direct_to_template to
template_view and in html file change the ones with like {% url login
%} to {% url 'login ' %}.
Thank you @Andreas and some developer for helping me out.
Or to make it little easy for other apps
table?
Like from this row, I should get 7,8,9.
Eagerly waiting fro your reply.
Thank you.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe
was not given
> whether to append the file or replace the content.
So, did it place the results in schema.xml file? Is there any such
file and it has appropriate permissions to write the content.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You receive
://devplace.in/~sandy/screen.png
But the problem with this is that all the fields does not get saved in
the database. Only the last row of the screenshot get submitted. How
can I do it right so that all the multiple rows get submitted at once?
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog
On Fri, Aug 9, 2013 at 2:50 PM, Sandeep kaur wrote:
> I have my code for formset here :
>
> {% csrf_token %}
>
Your help would be really appreciated.
Waiting.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you ar
temp = {'FAtestform_formset': FAtestform_formset,
'student':student,
'test':test }
return render_to_response('report/add_marks.html', temp,
context_instance = RequestContext(request))
--
Sandeep Kaur
E-Mail
On Mon, Aug 12, 2013 at 5:47 AM, Dan Gentry wrote:
> What is the purpose of checking test.id for a value of 3 or 6?
>
For test.id == 3 or 6, some other code will be executed, else this
code. I am currently doing for else part.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.co
uest.POST, instance=my_record)
Documentation is here:
http://docs.djangoproject.com/en/1.3/topics/forms/modelforms/
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the Google Groups
"Django us
t.
class Car(models.Model):
manufacturer = OneToOneField('Manufacturer')
# ...
Hope this helped.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To
example.com/django or if any other app on
same server then with example.com/django2. How can we do this with nginx?
Your help will be appreciated. :)
Thank you.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the
Hello all,
I want to include background images and gallery images to my django project
and I am unable to do so.Images do not get displayed. please help me out
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to
@Rodrigo Gomes
Thank you , my problem is solved.
@Jagdeep Singh Malhi
Yes , in templates.
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group,
I want to make some of my data in django-templates, variable. And
separate single file to define the variables. How can I do this?
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
On Thu, Jul 28, 2011 at 4:39 PM, Sheogora wrote:
>
> I have extended the User Profile by adding my own field,
> how do I change the New user form in the admin, to show the new field?
>
This can be done by simply adding your new field in list display under
User Profile of admin.py file. And by doin
Hi
I've tried to get the answer to this question (which is a bit open-ended)
on stackoverflow without much success, which
is basically this: what is the recommended approach to populating a
pre-existing Django app database table (generated
from a model and which is currently empty) with JSON dat
the app model that is stored when I do `python manage.py
migrate`?
Sandeep
> On 2 Mar 2015, at 19:37, aRkadeFR wrote:
>
> Hello,
>
> Indeed, the data migration is the best way. Check out
> the documentation here:
> https://docs.djangoproject.com/en/1.7/ref
d please explain what is happening
here and how this method works - is the argument to bulk_create a
list of namedtuple objects called Country or are these Country model
objects?
Also could someone please explain what db_alias is?
Sandeep
--
You received this message because you are subscribed to
ng like
Country.objects.using(db_alias).bulk_update( )
Country.objects.using(db_alias).bulk_delete( )
?
Thanks again in advance.
Sandeep
> On 5 Mar 2015, at 19:34, aRkadeFR wrote:
>
> Hello,
>
> In Django, you can instanciate objects from your model without
> persist it to
it reports there are no migrations to apply.
Sandeep
--
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 thi
ead()
return '%s' % (self.name) + HttpResponse(image_data,
content_type="image/jpg")
But it give following error :
Exception Value:
coercing to Unicode: need string or buffer, HttpResponse found
Is it possible to do this ?
Thanks.
--
Sandeep Kaur
Blog: sandymada
Anybody please help.
On Sun, Mar 22, 2015 at 3:07 PM, Sandeep kaur wrote:
> Greetings,
> I want to have the thumnails of images with the names in the dropdown
> field of form. To return the image as foreign key field, I have used this
> code :
> def __unicode__(self):
>
Hi
I am setting up an admin user account to manage my Django app on
my local machine, but would it be possible for me to also give admin
access to external users using their own machines? My machine is
not part of a LAN/WAN, just standalone, but I am thinking that to enable
this I should provide
mod wsgi. Can you help me in getting this issue resolved.
Well my issue is resolved. All I do after making the changes is :
$ service supervisord reload
$ service nginx reload
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you
dule)
> 11:13:37 web.1 | ImportError: No module named hellodjango.wsgi
Your application is not able to find the module hellodjango.wsgi. Did you
make the wsgi.py file?
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscr
kends/mysql/base.py",
line 14, in
> import MySQLdb as Database
> ImportError: No module named 'MySQLdb'
About this, try installing MySQLdb using this command:
apt-get install python-mysqldb
--
Sandeep Kaur
Blog: sandymadaan.wordpress.com
SCM: https://github.com/sandeepmad
Hello,
I installed a django app "zebra" in my django site. This application is
working with runserver but not on host server. I want it running on host
server ASAP. What could be the probable reason for this behavior of app?
Your help will be appreciated.
--
Sandeep Kaur
E-Mail
On Thu, Dec 5, 2013 at 9:37 AM, Lachlan Musicman wrote:
>
> Which web server are you using to serve it on the host server?
>
> Apache, nginx are the most likely...
>
It's nginx.
> And how do you have that web server configured?
I configured it using gunicorn and supervis
roject which is not working. Do I
need to start the app with gunicorn or something like this?
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe
for this?
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
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-user
but server is nicely configured and is running. I am
new to nginx and gunicorn deployment. Though deployment has been done but
am not able to understand why the changes are not visible and which program
is running which is behind the deployment.
Your help will be highly appreci
gi file, change
sys.path.append('/home/jass')
to
sys.path.append('/home/jass/')
that means add slash at the end.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the Google Groups
"Django user
s the line
>
> {% extends "base.html" %}
Inside the template folder.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe from th
uyer_id = models.ForeignKey(User)
OMG.
What do want to say?
Can you please use some other medium to show your code? Github may be one.
--
Sandeep Kaur
E-Mail: mkaurkha...@gmail.com
Blog: sandymadaan.wordpress.com
--
You received this message because you are subscribed to the Google Group
Dear All,
I checked my django site a security ponycheckup at ponycheckup.com and I
got 90%, which is good. However I am stuck at resolving the error "
Web server allows TRACE
Your web server allows the TRACE method. This is not good, as it rarely
serves a purpose, and can be used in cross-site s
Dear all,
Noone else here who has this issue? Really would like to learn how this
works.
Thanks,
Sandeep
On Saturday, September 17, 2016 at 9:29:29 PM UTC+2, Sandeep Patil wrote:
>
> Dear All,
>
> I checked my django site a security ponycheckup at ponycheckup.com and I
> go
how can i add custom action button beside add button?
--
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 th
t EB command and take it from there. …I suppose you could
> try writing a Python function or a Django command that will append your
> desired setting to the .htaccess file when you run it.
>
>
>
> *From:* django...@googlegroups.com [mailto:
> django...@googlegroups.c
I am trying to generate a form dynamically and want to assign indentation
of form fields. I am trying to assign an custom attribute offset
to forms.CharField in subclass. I plan to use this logic to create a form
dynamically from an xml file, where the fields would be indented based on
the depth
I am trying to generate a form dynamically and want to assign indentation
of form fields. I am trying to assign an custom attribute offset to
forms.CharField in subclass. I plan to use this logic to create a form
dynamically from an xml file, where the fields would be indented based on
the dept
Hi All,
I am getting error when I tried to create a superuser. I am using Cassandra
3.0 with Django 1.11.4.
I used this command in Pycharm: manage.py createsuperuser
error: "cassandra.protocol.SyntaxException:
"
What am I doing wrong?
--
You received this message because you are subscribe
'import views', let me
know. I am not sure I have reached that stage ever..:)
Hope this helps.
Thanks,
Sandeep
--
*Dr. Sandeep Kumar,*
Postdoctoral Researcher,
Lunenfeld Tanenbaum Research Institute,
Mount Sinai Hospital,
600 University Ave,
Toronto, Ontario
Canada
http://individual.
SQL is not working with apache.
Your help will be highly appreciated.
--
Sandeep Kaur
Blog: sandymadaan.wordpress.com
SCM: https://github.com/sandeepmadaan
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe from this group
/backends/mysql/base.py",
line 27, in
[Thu Sep 17 05:27:38 2015] [error] [client 123.239.71.95] raise
ImproperlyConfigured("Error loading MySQLdb module: %s" % e)
[Thu Sep 17 05:27:38 2015] [error] [client 123.239.71.95]
ImproperlyConfigured: Error loading MySQLdb module: No modul
1 - 100 of 109 matches
Mail list logo