django

Django form pass parameter from template to view by submit button

I want to pass a parameter, when i click submit button. urls.py urlpatterns = patterns('', (r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}), (r'^home/$', 'views.home'), (r'^home/(?P<build>[^/]+)/$', 'views.run'), (r'^run/delete/$', 'views.runDelete') ) run.html <form nam...

Django ORM Query: relationships

There is a model: class DomainPosition(models.Model): domain = models.ForeignKey(Domain) keyword = models.ForeignKey(Keyword) date = models.DateField() position = models.IntegerField() class Meta: ordering = ['domain', 'keyword'] How to get the data for a template? For each domain want to display table (fi...

Django "view didn't return an HttpResponse object."

when i call runDelete, then it will call run, so why "view didn't return an HttpResponse object" happen? thanks:) views.py def run(request, build): run_list = [] target_dict = {} target_num = 0 build_id = 0 all_run_list = TestRun.objects.all().order_by('id') for run in all_run_list: build_version = r...

matplotlib matshow labels

Hi all, I start using matplotlib a month ago, so I'm still learning. I'm trying to do a heatmap with matshow. My code is the following: data = numpy.array(a).reshape(4, 4) cax = ax.matshow(data, interpolation='nearest', cmap=cm.get_cmap('PuBu'), norm=LogNorm()) cbar = fig.colorbar(cax) ax.set_xticklabels(alpha) ax.set_yticklabel...

How do i set HttpOnly cookie in django?

and does it worth the efforts? ...

Django full text search order by relevance

I am using the Django query filter __search to perform a full text search e.g MyModel.objects.filter(title__search = 'some title') How do I get it to order by relevance, as currently it seems to be ordering alphabetically? Specifically I would like search results where the title was some title to appear first before something that ha...

Issue with Django Inline form

I have attached TestInline in the FoobarAdmin, this thing works well but i want logged in user to be pre-populated for the added_by field from django.contrib import admin from django.contrib.auth.models import User class Test(models.Model): description = models.TextField() added_on = models.DateTimeField(auto_now_add=True) ...

django ignore ordering parameter on model definition on query

On my model I have class Meta: ordering = ['title'] Is there a way I can leave this in the model definition as its useful elsewhere but in a query tell it to ignore it without having order by? ...

How to use Django to manage free spaces in a group of users?

I have the following (stripped down) code: # games/models.py side_choices = [('A', 'Attack'), ('D', 'Defense')] position_choices = [(0, 'Commander'), (1, 'Knight'), (2, 'Mage'), (3, 'Healer')] class Game(models.Model): users = models.ManyToManyField(User, through='GameParticipation)) // User is Django's user class GameParticipatio...

Django db and Template

I am trying to implement the following setup: I have 5 different Apps. All 5 are part of one project. I am trying to extract all the common elements these different apps have. Than I want to make those elements variables that I can than make the view.py paste into templates I create. So I have templates that have variables in it like...

Django Forms and Buttons

I have been working on forms only recently and I am still puzzeld by them. What I want are standard Forms: Next Button Submit Data to Db Timestamp Clickable Images with Regions defined where when I click I get to the next page And I would like to combine these. E.g. have a next button + Record the Timestamp. or E.g. Click into an...

django-nose testrunner doesn't use --with-django option

When running nosetests, django-nose runner doesn't supply --with-django option to nosetests, so my nose + Twill tests fail when trying to access URLs: ./manage.py test ... raise BrowserStateError("cannot go to '%s'" % (url,)) BrowserStateError: cannot go to 'http://127.0.0.1:8088/admin/' -------------------------------------------------...

Which Dynamic Internationalisation system to use in Django projects?

Hey, I am developing a new project from scratch with Django. I see that there are many apps for handling translation of dynamic content. Django-multilingual Django-pluggable-model-i18n Django-modeltranslation Transdb Django-multilingual-model- Django-transmeta to name few. Transdb, transmeta and multilingual sounded fair, but I wa...

Django forms request.user

I my model users can create rifles and this rifle is obviously associated with a User. class Gun(ImageModel): user = models.ForeignKey(User) ... ... ... I have another model which is dependent on this and need to make use of the users rifles, but when the user adds a record I only want to display his rifles. mt ...

Django password problems

I'm using a modelform for User like so: class UserForm(forms.ModelForm): class Meta: model = User fields = ('username','password','email',) but the password field shows up as a regular textfield, not a password input. How do I make sure it shows a password field? I tried this: class UserForm(forms.ModelForm): ...

Country-based Super User Access

I'm looking to provide super-user access to entities belonging to a specific country. eg. Swedish SU can only admin Swedish entities, etc... However, I'm new to django (taking over an old system) and I need a lifeline. I'd like to be able to specify a relationship table. I've already added a userprofile and with that I have a new fi...

Why are the Django project URLs not all available to the Django test client?

I've been trying to add the django-lean app to my project. The django-lean app is not located in the project I'm working on, it is on the PYTHONPATH. I have not been able to get the django-lean tests to pass. It seems the issue is that the TestCase defines a value for urls: urls = 'django_lean.experiments.tests.urls' As best as I...

Django inlinemodeladmin validation - but with a generic relation

I previously had models like this: class AssemblyAnnotation(models.Model): assembly = models.ForeignKey(Assembly) type = models.ForeignKey(AssemblyAnnotationType) ... def clean(self): from django.core.exceptions import ValidationError if not self.type.can_annotate_aliases and self.assembly.alias_of_id is ...

How do i migrate a model containing an ImageField from django-imagekit using django-south?

I find this documentation extremely confusing: http://south.aeracode.org/docs/customfields.html If someone could walk me through this or at least give a full example, I would be very grateful. ...

Django clean method throwing KeyError on POST

I'm getting a KeyError for 'password' when I try to submit my form. trace: Request Method: POST Request URL: http://localhost:8000/register/ Django Version: 1.2.1 Python Version: 2.7.0 Installed Applications: ['django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'djangoproject1.authentication'] Installed ...