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
""" | |
Task management forms | |
""" | |
from django import forms | |
from django.contrib.auth.models import User | |
from task_management.fields import MultiFileField | |
from task_management.helpers import send_message | |
from task_management.models import Task, TaskAttachment, TaskComment, \ |
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 -- | |
import time | |
from celery.utils.log import get_task_logger | |
from constance import config | |
from django.conf import settings | |
from django.db import IntegrityError | |
from django.utils import timezone | |
from vk.exceptions import VkException |
NewerOlder