Merge pull request #1151 from migonzalvar/fix/export
Fix project export done emailremotes/origin/3.4.0rc
commit
989fcfe466
|
@ -16,7 +16,7 @@
|
||||||
# You should have received a copy of the GNU Affero General Public License
|
# You should have received a copy of the GNU Affero General Public License
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
from datetime import datetime
|
import datetime as dt
|
||||||
|
|
||||||
from django_jinja import library
|
from django_jinja import library
|
||||||
from django_sites import get_by_id as get_site_by_id
|
from django_sites import get_by_id as get_site_by_id
|
||||||
|
@ -34,7 +34,7 @@ def resolve(type, *args):
|
||||||
return url_tmpl.format(scheme=scheme, domain=site.domain, url=url)
|
return url_tmpl.format(scheme=scheme, domain=site.domain, url=url)
|
||||||
|
|
||||||
|
|
||||||
@library.filter(name="date")
|
@library.filter(name="parse_and_format_date")
|
||||||
def format_date(value, *args):
|
def parse_and_format_date(value, *args):
|
||||||
date_value = datetime.strptime(value, '%Y-%m-%d')
|
date_value = dt.datetime.strptime(value, '%Y-%m-%d')
|
||||||
return date_value.strftime('%d %b %Y')
|
return date_value.strftime('%d %b %Y')
|
||||||
|
|
|
@ -149,7 +149,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{# ASSIGNED TO #}
|
{# DUE DATE #}
|
||||||
{% elif field_name == "due_date" %}
|
{% elif field_name == "due_date" %}
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="middle" rowspan="2" class="update-row-name">
|
<td valign="middle" rowspan="2" class="update-row-name">
|
||||||
|
@ -158,7 +158,7 @@
|
||||||
<td valign="top" class="update-row-from">
|
<td valign="top" class="update-row-from">
|
||||||
{% if values.0 != None and values.0 != "" %}
|
{% if values.0 != None and values.0 != "" %}
|
||||||
<span>{{ _("from") }}</span><br>
|
<span>{{ _("from") }}</span><br>
|
||||||
<strong>{{ values.0|date }}</strong>
|
<strong>{{ values.0|parse_and_format_date }}</strong>
|
||||||
{% else %}
|
{% else %}
|
||||||
<span>{{ _("from") }}</span><br>
|
<span>{{ _("from") }}</span><br>
|
||||||
<strong>{{ _("Not set") }}</strong>
|
<strong>{{ _("Not set") }}</strong>
|
||||||
|
@ -169,7 +169,7 @@
|
||||||
<td valign="top">
|
<td valign="top">
|
||||||
{% if values.1 != None and values.1 != "" %}
|
{% if values.1 != None and values.1 != "" %}
|
||||||
<span>{{ _("to") }}</span><br>
|
<span>{{ _("to") }}</span><br>
|
||||||
<strong>{{ values.1|date }}</strong>
|
<strong>{{ values.1|parse_and_format_date }}</strong>
|
||||||
{% else %}
|
{% else %}
|
||||||
<span>{{ _("to") }}</span><br>
|
<span>{{ _("to") }}</span><br>
|
||||||
<strong>{{ _("Not set") }}</strong>
|
<strong>{{ _("Not set") }}</strong>
|
||||||
|
|
|
@ -0,0 +1,33 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Copyright (C) 2018 Miguel González <migonzalvar@gmail.com>
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU Affero General Public License as
|
||||||
|
# published by the Free Software Foundation, either version 3 of the
|
||||||
|
# License, or (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program 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 Affero General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU Affero General Public License
|
||||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
from django.core.management import call_command
|
||||||
|
|
||||||
|
from .. import factories as f
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.django_db
|
||||||
|
def test_emails():
|
||||||
|
# Membership invitation
|
||||||
|
m = f.MembershipFactory.create()
|
||||||
|
m.user = None
|
||||||
|
m.save()
|
||||||
|
|
||||||
|
# Regular membership
|
||||||
|
f.MembershipFactory.create()
|
||||||
|
|
||||||
|
# f.UserFactory.create()
|
||||||
|
call_command('test_emails', 'none@example.test')
|
Loading…
Reference in New Issue