Si aujourd'hui les étudiants font face aux défis de l'efficacité de leur orientation et de leur professionalisation, entrepreneuriat est une des notions les plus partagées vers eux. The Starters se veut être une communcauté bâtie autour de ces points là et qui permettra de développer des professionnels doués et des entrepreneurs efficaces.
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang='en'> | |
<head> | |
<meta charset='utf-8' /> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> | |
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script> | |
<script src='https://cdn.jsdelivr.net/npm/[email protected]/index.global.min.js'></script> | |
<script> |
This file contains hidden or 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
Babel==2.6.0 | |
chardet==3.0.4 | |
decorator==4.3.0 | |
docutils==0.14 | |
ebaysdk==2.1.5 | |
feedparser==5.2.1 | |
freezegun==0.3.11; python_version < '3.8' | |
freezegun==0.3.15; python_version >= '3.8' | |
gevent==1.1.2 ; sys_platform != 'win32' and python_version < '3.7' | |
gevent==1.5.0 ; python_version == '3.7' |
This file contains hidden or 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
/* @odoo-module */ | |
import { registry } from "@web/core/registry"; | |
import { Model, useModel } from "@web/views/helpers/model"; | |
import { ControlPanel } from "@web/search/control_panel/control_panel"; | |
import { XMLParser } from "@web/core/utils/xml"; | |
import { KeepLast } from "@web/core/utils/concurrency"; | |
import { useService } from "@web/core/service_hook"; | |
// ----------------------------------------------------------------------------- |
This file contains hidden or 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 flask import Blueprint | |
class Simple(object): | |
def __init__(self, app): | |
self.app = None | |
if app is not None: | |
self.init_app(app) | |
def init_app(self, app): | |
simple = self.register('simple') |
This file contains hidden or 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
""" | |
Flask-Simple | |
------------- | |
Just to test how flask's extensions work! | |
""" | |
from setuptools import setup | |
setup( | |
name='Flask-Simple', |
This file contains hidden or 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
DATABASE_URI = 'postgresql+psycopg2://user:password@localhost/dbname' |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<odoo> | |
<data> | |
<!-- Définir l'action pour ouvrir le formulaire de devis --> | |
<record model="ir.actions.act_window" id="oo_purchase_order_action"> | |
<field name="name">Devis</field> | |
<field name="res_model">purchase.order</field> | |
<field name="view_type">form</field> | |
<field name="view_mode">tree,form</field> |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<odoo> | |
<data> | |
<!-- Héritage de la vue 'product.product_template_only_form_view' --> | |
<record model="ir.ui.view" id="oo_product_template_form"> | |
<field name="name">oo_product_template.form</field> | |
<field name="model">product.template</field> | |
<field name="inherit_id" ref="product.product_template_only_form_view"/> | |
<field name="arch" type="xml"> |
This file contains hidden or 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
# coding: utf-8 | |
from odoo import fields, models | |
class ProductTemplate(models.Model): | |
_inherit = 'product.template' | |
book_id = fields.Many2one('oo.consultation', string="Livre associé") |
NewerOlder