Page MenuHomec4science

get_validity_dates.html
No OneTemporary

File Metadata

Created
Sun, Sep 29, 06:29

get_validity_dates.html

{% extends "admin/base_site.html" %}
{% block content %}
<style type="text/css">
#issn_list { rows: 8; resize: none; }
</style>
<form action="" method="post">
{% csrf_token %}
<p>
Enter the validity dates for the selected conditions:
</p>
From:
<input name="valid_from" type="date" />
<br/>
Until:
<input name="valid_until" type="date" />
<br/>
{% if objects == 'journals' %}
<p>
<br/>
Applicable to the following ISSNs (unknown items are ignored; leave completely blank for all journals):
</p>
<textarea name="issn_list" id="issn_list" cols="20" rows="10" style="resize: both;">
</textarea>
<br/>
{% endif %}
{% for obj in queryset %}
<input type="hidden" name="_selected_action" value="{{ obj.pk }}" />
{% endfor %}
<input type="hidden" name="action" value="connect_with_all_{{ objects }}" />
<input type="submit" name="apply" value="Set for multiple {{ objects }}"/>
</form>
{% endblock %}

Event Timeline