Questions tagged [satchmo]

Satchmo is an open source Python framework for e-commerce web applications--it is built on top of the Django project. Use this tag for questions regarding Satchmo which are not more generally applicable to Django.

Satchmo is an open source Python framework for e-commerce web applications--it is built on top of the Django project. Use this tag for questions regarding Satchmo which are not more generally applicable to Django.

The Satchmo Project's home page can be found at http://www.satchmoproject.com/.

127 questions
23
votes
6 answers

django-cart or Satchmo?

I'm looking to implement a very basic shopping cart. Satchmo seems to install a lot of applications and extra stuff that I don't need. I've heard others mention django-cart. Has anyone tried this Django app (django-cart)? Anything to watch for…
Ryan Duffield
  • 18,497
  • 6
  • 40
  • 40
12
votes
2 answers

Django-import-export - import of advanced fields?

For a Django model I'm using django-import-export package. If need to export more then just available model fields, like properties or custom fields, new can be added with import_export.fields.Field class and optionally dehydrate_
David Unric
  • 7,421
  • 1
  • 37
  • 65
11
votes
2 answers

Satchmo clonesatchmo.py ImportError: cannot import name execute_manager

I get satchmo to try, but I have a great problem at first try, and I don't understand whats wrong. When I making $ python clonesatchmo.py into clear django project, it trows an error: $ python clonesatchmo.py Creating the Satchmo…
Pruntoff
  • 615
  • 3
  • 8
  • 18
9
votes
6 answers

How to preserve django test database after running test cases

When I run test cases by typing python manage.py test myapp After test cases completed, test databases deleted by default by django test runner. I don't want it to be deleted. I can use any database! I want to preserve my database because there are…
Bilal Basharat
  • 3,066
  • 6
  • 21
  • 20
7
votes
4 answers

TemplateSyntaxError: 'settings_tags' is not a valid tag library

i got this error when i try to run this test case: WHICH IS written in tests.py of my django application: def test_accounts_register( self ): self.url = 'http://royalflag.com.pk/accounts/register/' self.c = Client() self.values = { …
Bilal Basharat
  • 3,066
  • 6
  • 21
  • 20
6
votes
3 answers

How to override an app in Django properly?

I'm running Satchmo. There are many apps and I've changed some of the source in the Product app. So my question is how can I override this properly because the change is site specific. Do I have to copy over the whole Satchmo framework and put it…
darren
  • 18,845
  • 17
  • 60
  • 79
6
votes
1 answer

what's the most extensible/flexible FOSS e-commerce software? (or should I roll-my-own?)

I need to build an internal order entry and tracking system for a grocery store which requires many of the features of existing e-commerce systems, such as product catalog, customer_to_order relations/views, movement reporting, order statuses, etc. …
Tony
  • 625
  • 1
  • 6
  • 17
6
votes
2 answers

fk_name 'user' is not a ForeignKey to

I am using django 1.3.1 and satchmo 0.9.2. I used the default model that ships with Satchmo called Contact. I created a satchmo_mod app, and an admin.py file. pip install django==1.3.1 pip install -r…
codygman
  • 832
  • 1
  • 13
  • 30
5
votes
1 answer

django sitemap root url not showing up

my sitemap.xml file is showing every url of my apps as it should do. but the main /-url (root-url) of my domain is not in the sitemap.xml because its not an app. and there are no models for the main-page. but as you can see in sitemap.py (see below)…
user625331
  • 53
  • 4
5
votes
2 answers

extending satchmo user profile

I'm trying to extend the basic user registration form and profile included in satchmo store, but I'm in problems with that. This what I've done: Create a new app "extendedprofile" Wrote a models.py that extends the satchmo_store.contact.models…
z3a
  • 1,014
  • 2
  • 11
  • 20
4
votes
3 answers

How to make Satchmo work in Google App Engine

I understand that there are big differences in data-store, but surely since django is bundled and it abstracts data-store away from Satchmo, something can be done? Truth is that I am not a Python guy, been mostly Java/PHP thus far, but I am willing…
adir1
  • 130
  • 10
4
votes
2 answers

Default Django checkbox to be true and hidden

I am working with Satchmo and am wondering for the newsletter subscription, how to make it so when people sign up, they are automatically subscribed to the newsletter. I found this line of code in forms.py: newsletter =…
Wesley
  • 65
  • 1
  • 3
3
votes
1 answer

integrating Satchmo with existing django project

I have a running django project and i want to integrate Satchmo with that project. Problem is that instead of putting satchmo into my site-packages directory, i want it to be used as a django app i.e all the satchmo apps like product, shipping,…
Rahul
  • 568
  • 2
  • 6
  • 16
3
votes
2 answers

Django Satchmo No Images

I got the basic Satchmo store up and running with clonesatchmo, however, the images does not show up. The source shows: with blank where the image source should be. When I run…
Ricky Gu
  • 585
  • 1
  • 4
  • 13
3
votes
1 answer

change format sorl thumbnail

can someone please give me an example of how to change the SORL-thumbnail format in the django template tag. I've read the documentation here: http://thumbnail.sorl.net/template.html#thumbnail and have tried various ways of implimenting to no avail.…
Rishi
  • 3,538
  • 5
  • 29
  • 40
1
2 3
8 9