From f6dc2ee4564a1cd7cd5470e4889aafcf647c0c5e Mon Sep 17 00:00:00 2001 From: Jorran de Wit <jorrandewit@outlook.com> Date: Mon, 29 Jan 2018 18:15:22 +0100 Subject: [PATCH] Make not needed vor field blankable --- .../migrations/0007_auto_20180129_1814.py | 25 +++++++++++++++++++ journals/models.py | 4 +-- .../journals/publication_detail.html | 4 ++- 3 files changed, 30 insertions(+), 3 deletions(-) create mode 100644 journals/migrations/0007_auto_20180129_1814.py diff --git a/journals/migrations/0007_auto_20180129_1814.py b/journals/migrations/0007_auto_20180129_1814.py new file mode 100644 index 000000000..a4b27d63b --- /dev/null +++ b/journals/migrations/0007_auto_20180129_1814.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.4 on 2018-01-29 17:14 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('journals', '0006_merge_20180123_2040'), + ] + + operations = [ + migrations.AlterField( + model_name='reference', + name='vor', + field=models.CharField(blank=True, max_length=128), + ), + migrations.AlterField( + model_name='reference', + name='vor_url', + field=models.URLField(blank=True), + ), + ] diff --git a/journals/models.py b/journals/models.py index 5ca16ad8f..a79b7e3ed 100644 --- a/journals/models.py +++ b/journals/models.py @@ -335,8 +335,8 @@ class Reference(models.Model): title = models.CharField(max_length=512) citation = models.CharField(max_length=512, blank=True) - vor = models.CharField(max_length=128) - vor_url = models.URLField() + vor = models.CharField(blank=True, max_length=128) + vor_url = models.URLField(blank=True) class Meta: unique_together = ('reference_number', 'publication') diff --git a/journals/templates/journals/publication_detail.html b/journals/templates/journals/publication_detail.html index 67fbaf1ab..56ed342a7 100644 --- a/journals/templates/journals/publication_detail.html +++ b/journals/templates/journals/publication_detail.html @@ -90,11 +90,13 @@ {% endfor %} </ul> - {% include 'partials/journals/references.html' with publication=publication %} + {% if is_edcol_admin %} {# This function is not available for public yet! #} <em>The following is not available for the public yet:</em> + {% include 'partials/journals/references.html' with publication=publication %} + {% if publication.funders_generic.exists %} <h3>Funder{{ publication.funders_generic.count|pluralize }} for this publication:</h3> <ul> -- GitLab