package | from version | to version |
---|---|---|
betsy | 1.0.2 | 1.0.2-1687524888860 |
overmind | 28.0.2 | 28.0.3-1687524888860 |
overmind-devtools | 29.0.2 | 29.0.3-1687524888860 |
overmind-devtools-client | 11.0.2 | 11.0.3-1687524888860 |
overmind-devtools-vscode | 10.0.2 | 10.0.3-1687524888860 |
overmind-graphql | 8.0.2 | 8.0.3-1687524888860 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name": "appMounted", | |
"executionId": "1514639853293_4103", | |
"source": "c", | |
"isExecuting": false, | |
"datetime": 1514639853293, | |
"staticTree": { | |
"name": "Initiate App", | |
"_functionTreePrimitive": true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import unicode_literals | |
from django.http import HttpResponseRedirect | |
from mezzanine.pages.page_processors import processor_for | |
from cartridge.shop.models import Product | |
from cartridge.shop.forms import AddProductForm | |
from .utils import Donation | |
@processor_for("^product/(?P<slug>.*)$") | |
def donation_form(request, page): | |
form = AddProductForm() |