diff --git a/finances/forms.py b/finances/forms.py index 6f39d10e38b42c1f325cb8cf4df30f40d48c8d1d..e41ecf04b35d0225c508eba03c30b3f748c20cb8 100644 --- a/finances/forms.py +++ b/finances/forms.py @@ -25,7 +25,7 @@ class SubsidyForm(forms.ModelForm): model = Subsidy fields = ['organization', 'subsidy_type', 'description', 'amount', 'amount_publicly_shown', 'status', - 'date', 'date_until'] + 'date', 'date_until', 'renewal_of'] class SubsidyAttachmentForm(forms.ModelForm): diff --git a/finances/migrations/0013_subsidy_renewal_of.py b/finances/migrations/0013_subsidy_renewal_of.py new file mode 100644 index 0000000000000000000000000000000000000000..4e12a516903349f25e6f941df9c0a5c530f55d79 --- /dev/null +++ b/finances/migrations/0013_subsidy_renewal_of.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.4 on 2019-02-23 10:49 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('finances', '0012_subsidyattachment'), + ] + + operations = [ + migrations.AddField( + model_name='subsidy', + name='renewal_of', + field=models.ManyToManyField(blank=True, related_name='renewed_by', to='finances.Subsidy'), + ), + ] diff --git a/finances/models.py b/finances/models.py index a885ab7e9bb7ee86ce601db39b1acb2beb30427d..d13fa2a2f4c6cf7342cae7c0807319152e7ebb75 100644 --- a/finances/models.py +++ b/finances/models.py @@ -44,6 +44,8 @@ class Subsidy(models.Model): status = models.CharField(max_length=32, choices=SUBSIDY_STATUS) date = models.DateField() date_until = models.DateField(blank=True, null=True) + renewal_of = models.ManyToManyField('self', related_name='renewed_by', + symmetrical=False, blank=True) class Meta: verbose_name_plural = 'subsidies' @@ -65,6 +67,8 @@ class Subsidy(models.Model): @property def renewal_action_date_color_class(self): if self.date_until and self.subsidy_type == SUBSIDY_TYPE_SPONSORSHIPAGREEMENT: + if self.renewed_by.exists(): + return 'transparent' today = datetime.date.today() if self.date_until < today + datetime.timedelta(days=122): return 'danger' @@ -76,6 +80,8 @@ class Subsidy(models.Model): @property def date_until_color_class(self): if self.date_until and self.subsidy_type == SUBSIDY_TYPE_SPONSORSHIPAGREEMENT: + if self.renewed_by.exists(): + return 'transparent' today = datetime.date.today() if self.date_until < today: return 'warning' diff --git a/finances/templates/finances/_subsidy_card.html b/finances/templates/finances/_subsidy_card.html index 93bc29f79b5453e52a522ef8a1338ac5c36e5674..f4da177eba80e1175f0d3b61a54c885bd3469f60 100644 --- a/finances/templates/finances/_subsidy_card.html +++ b/finances/templates/finances/_subsidy_card.html @@ -36,6 +36,18 @@ </tr> {% endif %} </table> + + {% if subsidy.renewal_of.all|length > 0 %} + <p> + Renewal of:<ul>{% for prevsub in subsidy.renewal_of.all %}<li><a href="{% url 'finances:subsidy_details' pk=prevsub.id %}">{{ prevsub }}</a></li>{% endfor %}</ul> + </p> + {% endif %} + {% if subsidy.renewed_by.all|length > 0 %} + <p> + Renewed by:<ul>{% for newsub in subsidy.renewed_by.all %}<li><a href="{% url 'finances:subsidy_details' pk=newsub.id %}">{{ newsub }}</a></li>{% endfor %}</ul> + </p> + {% endif %} + </div> </div> diff --git a/finances/templates/finances/subsidy_list.html b/finances/templates/finances/subsidy_list.html index 2d6b2cbef96debf43185eb7262c2ac810a367e14..734793fe730da68630410b2dd9e364fc7616cc0f 100644 --- a/finances/templates/finances/subsidy_list.html +++ b/finances/templates/finances/subsidy_list.html @@ -86,7 +86,9 @@ $(document).ready(function($) { {% for subsidy in object_list %} <tr class="table-row" data-href="{% url 'finances:subsidy_details' pk=subsidy.id %}" style="cursor: pointer;"> <td>{{ subsidy.organization }}</td> - <td>{{ subsidy.get_subsidy_type_display }}</td> + <td>{{ subsidy.get_subsidy_type_display }} + {% if subsidy.renewal_of.all|length > 0 %}<br/><span class="small text-muted">Renewal of:<ul class="list-unstyled">{% for prevsub in subsidy.renewal_of.all %}<li>{{ prevsub }}</li>{% endfor %}</ul></span>{% endif %} + {% if subsidy.renewed_by.all|length > 0 %}<br/><span class="small text-muted">Renewed by:<ul class="list-unstyled">{% for newsub in subsidy.renewed_by.all %}<li>{{ newsub }}</li>{% endfor %}</ul></span>{% endif %} </td> <td>{% if subsidy.amount_publicly_shown or perms.scipost.can_manage_subsidies %}€{{ subsidy.amount }}{% else %}-{% endif %}</td> <td>{{ subsidy.date }}</td> <td class="bg-{{ subsidy.date_until_color_class }}">{{ subsidy.date_until }}</td>