{% extends "base.html" %} {% load static %} {% block title %}New Entry - Illustrations DB{% endblock %} {% block body_class %}themed-bg{% endblock %} {% block content %}

Record New Illustration

Use this form to save a new illustration that you encountered. Be sure to properly catagorize your entry with comma seperated subjects and to use the standard bible book abbreviations when recording a scripture.

{% csrf_token %}
{{ form.subject.as_widget(attrs={"placeholder":"Enter comma-separated subjects"}) }} {% if form.subject.errors %}
{{ form.subject.errors|striptags }}
{% endif %}
{{ form.illustration.as_widget(attrs={"placeholder":"Write the full illustration here"}) }} {% if form.illustration.errors %}
{{ form.illustration.errors|striptags }}
{% endif %}
{{ form.application.as_widget(attrs={"placeholder":"Explain the lesson or application"}) }} {% if form.application.errors %}
{{ form.application.errors|striptags }}
{% endif %}
{{ form.scripture_raw.as_widget(attrs={"placeholder":"e.g. John 3:16; use standard abbreviations"}) }} {% if form.scripture_raw.errors %}
{{ form.scripture_raw.errors|striptags }}
{% endif %}
{{ form.source.as_widget(attrs={"placeholder":"Where did you hear or read this illustration?"}) }} {% if form.source.errors %}
{{ form.source.errors|striptags }}
{% endif %}
{{ form.talk_title }} {% if form.talk_title.errors %}
{{ form.talk_title.errors|striptags }}
{% endif %}
{{ form.talk_number }} {% if form.talk_number.errors %}
{{ form.talk_number.errors|striptags }}
{% endif %}
{{ form.entry_code.as_widget(attrs={"placeholder":"Optional reference code"}) }} {% if form.entry_code.errors %}
{{ form.entry_code.errors|striptags }}
{% endif %}
{{ form.date_added }} {% if form.date_added.errors %}
{{ form.date_added.errors|striptags }}
{% endif %}
{{ form.date_edited }} {% if form.date_edited.errors %}
{{ form.date_edited.errors|striptags }}
{% endif %}
Cancel
{% endblock %}