This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
facturio/subjects/models.py

11 lines
214 B
Python

from django.db import models
from django.utils.translation import gettext_lazy as _
class Subject(models.Model):
id = models.CharField(
_("cin"),
max_length=8,
primary_key=True
)