PropertyValue
http://www.w3.org/1999/02/22-rdf-syntax-ns#type
http://www.w3.org/ns/prov#value
  • orders.models import Order class OrderView(DetailView): model=Order def get_context_data(self, **kwargs): context = super(OrderView, self).get_context_data(**kwargs) context['payment_form'] = PaymentMethodForm(self.object.currency, initial={'order': self.object}) return contextHere we get a ``PaymentMethodForm`` object, that is parametrised with currency type.This is an important thing, because th
http://www.w3.org/ns/prov#wasQuotedFrom
  • python.org