Hello!
Could you please give me a piece of advice? I've got two applications:
Web-application on Django and Windows Forms application on C#. The
task is to organise communication between this two applications.
C# application need to get some data from server and post data to
server (server is djan
For example, we have object 'book' and 'vote'. Each vote is assigned
to some book. On page I'd like to know how many votes was for certain
book?
The first solution was to create a methdon in book model:
def get_votes(self):
.. database query here . return an integer...
That is the best w
Hello!
I'm trying to create a thumbnail using sorl-thumbnail in Django
template:
source: {{ photo.image.width }} x {{ photo.image.height }}
{% thumbnail photo.image "1024x1024" upscale="False" as
photo_thumbnail %}
thumbnail: {{ photo_thumbnail.width }} x
{{ photo_thumbnail.height }}
{% en
Hello,
In my Form I have a couple of ChoiceField fields, for which I need to set a
default / initial value.
I'm trying to do this in the __init__, and my debug shows, that these
values do take, but, when the actual html forms shows up, my default values
are not set as desired.
Am I missing somet
I have the following tastypie resource:
class WorkloadResource(ModelResource):
# blueprints = ManyToManyField(Blueprint, 'blueprints')
blueprint = fields.OneToManyField('catalog.api.BlueprintResource',
attribute='blueprint',
related_name='worklo
5 matches
Mail list logo