{% extends "indigo.html" %} {% load i18n %} {% block content %}

Check your dictionaries

Paste your dictionary into the field below, including the variable assignment. Examples and more information below.

{% csrf_token %}

{{ form.content }}

{% if form.content.errors %}

Check result:

{{ form.content.errors }} {% else %}

No errors found.

{% endif %}

Examples

RETURNABLES = {'AtomSymbol':'AtomState.species.name', 'AtomIonCharge':'AtomState.species.ion', 'RadTransWavelength':'RadTran.vacwave', 'RadTransWavelengthUnit':'cm', }

RESTRICTABLES = {'AtomSymbol':'species__name', 'AtomNuclearCharge':'species__atomic', 'RadTransWavelength':'vacwave' }

This tool warns you of

This tool does not check whether the values you put into the right-hand-side match your data model or not.

{% endblock %}