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
# coding: utf-8 | |
""" | |
Código inicial usado na Lista de Exercícios 1 do curso | |
"Objetos Pythonicos" de Luciano Ramalho, Oficinas Turing. | |
""" | |
class Contador(object): | |
'Classe contador' | |
def __init__(self): |
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
# -*- coding: utf8 -*- | |
from django import forms | |
from django.contrib.auth.models import User | |
from bootstrap_toolkit.widgets import BootstrapDateInput | |
from django.conf import settings | |
from models import tipo_assunto, recomendacao_auditoria, despacho_auditoria | |
#from django.forms.widgets import DateTimeInput | |
import time, datetime |