Commit 04276f6a authored by Michal Čihař's avatar Michal Čihař

Add database field for subproject locking (issue #56)

parent 97dfaa78
This diff is collapsed.
......@@ -256,6 +256,10 @@ class SubProject(models.Model):
blank = True,
help_text = _('Filename of translations template, this is recommended to use for translations which store only translated string like Android resource strings')
)
locked = models.BooleanField(
default = False,
help_text = _('Whether subproject is locked for translation updates')
)
class Meta:
ordering = ['name']
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment