Se rendre au contenu
Menu
Cette question a été signalée
3793 Vues

<openerp>

<data>

<template id="website_calendar" name="Website Calendar">

<t t-call="website.layout">

<div id="wrap">

<t t-raw="0" />

<div class="oe_structure oe_empty" />

<section class="jumbotron mt16 mb16">

<div class="container">

<h1 class="text-center">Calendar</h1>

<table class="table table-bordered table-responsive">

<t t-set="week_days" t-value="request.env['booking.booking'].now_week()"/>

<t t-set="booking" t-value="request.env['calendar.event'].search([('name','=','Presentation for new Services')])"/>

<thead>

<tr>

<th class="text-center" colspan="7"><h2>HI: <t t-esc="week_days[0].isocalendar()[1]"/></h2>

</th>

</tr>

</thead>

<tbody>

<tr class="text-center">

<t t-foreach="week_days" t-as="d">

<td class="text-center"><h3 style="color: #888;" t-esc="d.strftime('%a')"/><br/>

<h1 t-esc="d.strftime('%d')"/><br/>

<h3 style="color: #444;" t-esc="d.strftime('%b')"/>

</td>

</t>

</tr>

<tr class="text-center">

<t t-foreach="week_days" t-as="d">

<td>

<t t-foreach="product.get_free_spots(d)" t-as="spot">

<a t-att-href="spot.url"><span t-field="spot.name"/></a><br/>

</t>

<span t-esc="request.env['booking.temp'].search([])[0].get_employee_calendar()"/>

</td>

</t>

</tr>

</tbody>

</table>

</div>

</section>

</div>

</t>

</template>

</data>

</openerp>

AttributeError: 'module' object has no attribute 'models'

Avatar
Ignorer

"Hi I am receiving an error on this code" is not a question, and forces people to open your post to understand what error you mean. Please edit your post and put the error in the title.

Post your .py file.

Publications associées Réponses Vues Activité
0
sept. 23
2418
0
sept. 23
2124
2
juin 25
11678
1
nov. 22
9367
6
oct. 23
22742