Skip to content

Commit

Permalink
http://luc.lino-framework.org/blog/2019/0315.html
Browse files Browse the repository at this point in the history
  • Loading branch information
lsaffre committed Mar 15, 2019
1 parent dbba892 commit d8f4c0a
Showing 1 changed file with 3 additions and 23 deletions.
26 changes: 3 additions & 23 deletions lino_patrols/patrols/models.py
@@ -1,39 +1,19 @@
# -*- coding: UTF-8 -*-
## Copyright 2013 Luc Saffre
## This file is part of the Lino project.
## Lino is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 3 of the License, or
## (at your option) any later version.
## Lino is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
## You should have received a copy of the GNU General Public License
## along with Lino; if not, see <http://www.gnu.org/licenses/>.
# Copyright 2013-2019 Rumma & Ko Ltd
# License: BSD (see file COPYING for details)

"""
The :xfile:`models` module for :mod:`lino_faggio`.
"""

from __future__ import unicode_literals

import logging
logger = logging.getLogger(__name__)
import logging ; logger = logging.getLogger(__name__)

import os
import datetime

from django.db import models
from django.conf import settings
from django.core.exceptions import ValidationError
from django.core.exceptions import MultipleObjectsReturned
from django.utils.safestring import mark_safe
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import string_concat
from django.utils.encoding import force_text
from django.utils.functional import lazy

from lino.api import dd
from lino import mixins
Expand Down

0 comments on commit d8f4c0a

Please sign in to comment.