我目前正在学习Django教程来学习视图和URL。我已经看了一遍又一遍的教程,看不出我做错了什么。
我收到错误:异常值:
反向的‘列表-事件’找不到。“列表-事件”不是有效的视图函数或模式名称。
Views.py从django.shortcuts导入呈现,从日历重定向导入日历,从datetime导入HTMLCalendar,从.models导入事件导入日期,从.forms导入VenueForm,从EventForm从django.http导入HttpResponseRedirect
# Create your views here.
# all events is listed in the
我有一个返回订单状态的代码,我也想以同样的方式返回产品映像(如果已经购买了多个产品)(即echo‘products’)。
代码:
add_action( 'woocommerce_before_thankyou', 'custom_content_thankyou', 10, 1 );
function custom_content_thankyou($order_id) {
if ( ! $order_id )
return;
// Get an instance of the WC_Order object
$or