Re: No module named _mysql

2015-09-16 Thread Sandeep kaur
ckends/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 module n

No module named _mysql

2015-09-16 Thread Sandeep kaur
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 and stop

Re: Image in Form Field

2015-03-23 Thread Sandeep kaur
Anybody please help. On Sun, Mar 22, 2015 at 3:07 PM, Sandeep kaur <mkaurkha...@gmail.com> 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 : >

Image in Form Field

2015-03-22 Thread Sandeep kaur
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: sandymadaan.wordpre

Re: django problem with mysql and apache

2014-12-24 Thread Sandeep kaur
.4/dist-packages/django/db/backends/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: http

Re: deploying django on gunicorn

2014-09-05 Thread Sandeep kaur
__import__(module) > 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 mes

Re: nginx server not reflecting changes

2014-07-09 Thread Sandeep kaur
fectly with apache and 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 rec

Re: how to saven models dynamically inputted by user in form

2014-07-03 Thread Sandeep kaur
class QuotedOrder(models.Model): > quote_buyer_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 subscri

Re: where is base.html located?

2014-05-04 Thread Sandeep kaur
her_list.html contains 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.

Re: nginx server not reflecting changes

2014-01-14 Thread Sandeep kaur
no job running, 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 appreciated

nginx server not reflecting changes

2014-01-11 Thread Sandeep kaur
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

Re: Django application

2013-12-05 Thread Sandeep kaur
h the new app I added to the project 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&q

Re: Django application

2013-12-05 Thread Sandeep kaur
gunicorn and supervisor. -- 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

Django application

2013-12-04 Thread Sandeep kaur
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

Deploying Django apps with nginx

2013-11-10 Thread Sandeep kaur
by 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

Re: django difference between - one to one, many to one and many to many

2013-10-29 Thread Sandeep kaur
. 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 unsub

Re: Editing forms in django

2013-10-18 Thread Sandeep kaur
by POST: form = MyModelForm(request.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

Re: Iterating over fields in Formset

2013-08-11 Thread Sandeep kaur
On Mon, Aug 12, 2013 at 5:47 AM, Dan Gentry <d...@gentryville.net> 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.

Re: Iterating over fields in Formset

2013-08-10 Thread Sandeep kaur
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: mkaurkha...@gmail.com Blog: sandymadaan.wordpress.com

Re: Iterating over fields in Formset

2013-08-10 Thread Sandeep kaur
On Fri, Aug 9, 2013 at 2:50 PM, Sandeep kaur <mkaurkha...@gmail.com> 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 rec

Iterating over fields in Formset

2013-08-09 Thread Sandeep kaur
://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

Re: [GD 40883] Re: Haystack

2013-07-30 Thread Sandeep kaur
xample/example-DIH/solr/solr/conf) And it 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: sandyma

Selecting values from database

2013-07-24 Thread Sandeep kaur
of this 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 unsubs

Re: Application Migration form Django 1.3 to Django 1.5

2013-06-17 Thread Sandeep kaur
little easy for other apps, we can make a script 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 receivi

Application Migration form Django 1.3 to Django 1.5

2013-06-16 Thread Sandeep kaur
. -- 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

Re: No module named wsgi

2013-05-23 Thread Sandeep kaur
On Thu, May 23, 2013 at 8:29 PM, Luggaz <lunga...@gmail.com> 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.

Re: Django Shopping Cart

2013-03-10 Thread Sandeep kaur
On Thu, Feb 28, 2013 at 2:32 AM, vijay shanker <deont...@gmail.com> 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

Re: Extending the base file depending on User type

2013-03-07 Thread Sandeep kaur
}) # > The "render(request" 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

Re: Extending the base file depending on User type

2013-03-06 Thread Sandeep kaur
On Wed, Mar 6, 2013 at 2:39 AM, Shawn Milochik <sh...@milochik.com> 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: sa

Extending the base file depending on User type

2013-03-05 Thread Sandeep kaur
.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.com

Re: How do I get the current user in a model?

2013-02-11 Thread Sandeep kaur
On Mon, Feb 11, 2013 at 7:42 PM, frocco <faro...@gmail.com> 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.

Re: forign key no forms

2013-02-10 Thread Sandeep kaur
enção! > The foreign key is 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:

Re: Database Transaction Migration

2013-01-24 Thread Sandeep kaur
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. -- Sandee

Database Transaction Migration

2013-01-24 Thread Sandeep kaur
-- Forwarded message -- From: Javier Guerra Giraldez <jav...@guerrag.com> 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 <mkaurkha...@gmail.com> wrote: > Yes,

Re: Database Transaction

2013-01-22 Thread Sandeep kaur
s etc. then I could not understand 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&q

Re: saving get objects to models

2013-01-22 Thread Sandeep kaur
erial']) > I think this 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

Database Transaction

2013-01-21 Thread Sandeep kaur
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

Re: ImportError at/ No module name

2012-12-20 Thread Sandeep kaur
', '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 "Django users" group. To post to this group, send email to django-users@google

Re: Problem with django sitemap

2012-12-17 Thread Sandeep kaur
.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&g

Re: Problem with django sitemap

2012-12-17 Thread Sandeep kaur
packages/Django-1.4.2-py2.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

Re: IntegrityError

2012-12-17 Thread Sandeep kaur
.result')) > > 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.wordpress.co

Re: Editing model instance

2012-11-23 Thread Sandeep kaur
d what I want. I 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

Re: Editing model instance

2012-11-22 Thread Sandeep kaur
On Thu, Nov 22, 2012 at 5:32 PM, Sergiy Khohlov <skhoh...@gmail.com> 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

Re: Editing model instance

2012-11-22 Thread Sandeep kaur
On Thu, Nov 22, 2012 at 4:54 PM, Sergiy Khohlov <skhoh...@gmail.com> 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.w

Editing model instance

2012-11-22 Thread Sandeep kaur
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 because you are subscribed to the Google Groups "Django users" group. T

Re: why the else statement {% else %} is not working...?

2012-11-19 Thread Sandeep kaur
On Mon, Nov 19, 2012 at 4:24 PM, muhammed riyas <muhammedriyas.2...@gmail.com> 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 ar

Re: why the else statement {% else %} is not working...?

2012-11-19 Thread Sandeep kaur
remove > all employees > {% else %} > 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:

Re: django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module: No module named MySQLdb

2012-11-18 Thread Sandeep kaur
vironment? See 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, s

Re: ModelForm excluded one field but it excludes another field

2012-11-17 Thread Sandeep kaur
debug this? 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 Kau

Re: django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module: No module named MySQLdb

2012-11-17 Thread Sandeep kaur
exceptions.ImproperlyConfigured: 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 Group

Re: Adding rows to the form

2012-11-16 Thread Sandeep kaur
row but not saved the entries of 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

Re: ViewDoesNotExist'module ' object has no attribute 'Form'

2012-11-16 Thread Sandeep kaur
ango. Try this : python manage.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.wordp

Re: no Polls in the admin page

2012-11-01 Thread Sandeep kaur
te.register(Poll, PollAdmin) ----- -- 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-users@googlegroups.com. To un

Re: Problem with formset

2012-11-01 Thread Sandeep kaur
er instances 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 rec

Conditions in template slows down the software

2012-09-14 Thread Sandeep kaur
}} {{ 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

Saving the form containing checkboxes

2012-08-25 Thread Sandeep kaur
ty }}{{tests.cost }} {% endfor %} {% endif %} {% else %} No material found {% endif %} Please do point me out where I am going wrong. Thank you. -- Sandeep Kaur E-Mail: mkaurkha...@gmail.com Blog: sandymadaan.wordpress.com -- You received this message because you are sub

Re: Using sessions in Django

2012-08-17 Thread Sandeep kaur
On Fri, Aug 17, 2012 at 1:28 PM, Sandeep kaur <mkaurkha...@gmail.com> wrote: > I am using session foreign key in my table. > if not request.session.exists(request.session.session_key): > request.session.create() >

Re: Using sessions in Django

2012-08-17 Thread Sandeep kaur
mething like this: > > 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 "

Re: Using sessions in Django

2012-08-17 Thread Sandeep kaur
generate 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.

Using sessions in Django

2012-08-17 Thread Sandeep kaur
as : ```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: sandymadaan.w

Re: Calculations in Queries

2012-08-15 Thread Sandeep kaur
r page. Just a wild idea. -- 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-users@googlegroups.com. To unsubscribe from this

Re: Dynamic forms

2012-08-01 Thread Sandeep kaur
//} }); $("select#test").change(function(vent) { if ($(this).val() == -1) { return; } myAwesomeFunctionToCallWhenAtestIsSelected();

Dynamic forms

2012-07-30 Thread Sandeep kaur
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 this g

Re: Django TypeError

2012-07-18 Thread Sandeep kaur
On Wed, Jul 18, 2012 at 3:13 PM, kenneth gonsalves <law...@thenilgiris.com> 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 --

Re: Django TypeError

2012-07-18 Thread Sandeep kaur
give different 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, s

Django TypeError

2012-07-17 Thread Sandeep kaur
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: sandymadaan.wordpress.com -- Yo

Re: to add counter in the project

2012-07-03 Thread Sandeep kaur
crement. Like I want job_no as 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

Re: Database Query in Shell

2012-05-27 Thread Sandeep kaur
n above, but as it is not > making any change (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 --

Database Query in Shell

2012-05-27 Thread Sandeep kaur
he 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 becaus

Re: Foreign Key don't work for me

2012-05-16 Thread Sandeep kaur
form = AmountForm() return render_to_response('automation/job_add.html', {'form': form, 'maxid': maxid}, context_instance=RequestContext(request)) -- Sandeep Kaur E-Mail: mkaurkha...@gmail.com Blog: sandymadaan.wordpress.com -- You received this message because you are subscribed

Foreign Key don't work for me

2012-05-16 Thread Sandeep kaur
-- But unfortunately these fields are not filled in Amount. However when job_no is not taken as foreign key, everything works fine. Please help me figure out the error. -- Sandeep Kaur -- You received this message because you are subscribed to the Google Groups "Django users" grou

Tables with Foreign Key does not get filled

2012-05-11 Thread Sandeep kaur
text_instance=RequestContext(request)) -- But unfortunately these fields are not filled in Amount. However when job_no is not taken as foreign key, everything works fine. Please help me figure out the error. -- Sandeep Kaur E-Mail: mkaurkha...@gmail.com Blog: sandymadaan.wordpress.com -- Y

Re: Implementing Foreign Key without admin interface

2012-03-29 Thread Sandeep kaur
On Fri, Mar 9, 2012 at 4:31 AM, Ramiro Morales <cra...@gmail.com> wrote: > On Thu, Mar 8, 2012 at 4:44 PM, Sandeep kaur <mkaurkha...@gmail.com> wrote: >>                        job_no_id = client.job_no >>                        ... >> Am I wrong somewhere?  H

Implementing Foreign Key without admin interface

2012-03-08 Thread Sandeep kaur
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" group. To post to this group, send email to django-users@googlegroups.com. To unsubscrib

Foreign Key + Primary key

2012-02-08 Thread Sandeep kaur
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

Re: Views in django

2012-02-05 Thread Sandeep kaur
sum in the view (NOT the template) 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

Re: Views in django

2012-02-03 Thread Sandeep kaur
{% 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. -- Sandeep Kaur E-Ma

Views in django

2012-02-03 Thread Sandeep kaur
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

Django - filters

2012-01-28 Thread Sandeep kaur
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:

Re: Extending the User form

2011-07-28 Thread sandeep kaur
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

django-variables

2011-07-09 Thread sandeep kaur
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

Re: Django views

2011-07-09 Thread sandeep kaur
@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

Django views

2011-06-28 Thread sandeep kaur
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