{% extends "admin/base_site.html" %} {% load i18n admin_urls static admin_modify %} {% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{{ title }}

CSV文件格式说明:

示例:

filename,score,passed
mp-37747.cif,0.6182557284832001,TRUE
mp-28327.cif,0.5463817358016968,TRUE
mp-1093727.cif,0.534061074,FALSE
    
{% csrf_token %}
{{ form.property_name }} {% if form.property_name.help_text %}

{{ form.property_name.help_text }}

{% endif %} {% if form.property_name.errors %}
    {% for error in form.property_name.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{{ form.csv_file }} {% if form.csv_file.help_text %}

{{ form.csv_file.help_text }}

{% endif %} {% if form.csv_file.errors %}
    {% for error in form.csv_file.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{{ form.csv_content }} {% if form.csv_content.help_text %}

{{ form.csv_content.help_text }}

{% endif %} {% if form.csv_content.errors %}
    {% for error in form.csv_content.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
取消
{% endblock %}