Commit 0a2e41e3 authored by Michal Čihař's avatar Michal Čihař

Add model for storing exported git URL (issue #207)

parent 3996ce32
This diff is collapsed.
......@@ -94,6 +94,11 @@ class SubProject(models.Model, PercentMixin, URLMixin):
validators=[validate_repoweb],
blank=True,
)
git_export = models.CharField(
max_length=200,
help_text=ugettext_lazy('URL of Git repository where users can fetch changes from Weblate'),
blank=True
)
report_source_bugs = models.EmailField(
help_text=ugettext_lazy(
'Email address where errors in source string will be reported, '
......
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