{% extends 'base.html' %} {% block title %}{{ 'Edit' if journal else 'Create' }} Journal | Admin | {{ settings.site_name }}{% endblock %} {% block content %}

{{ 'Edit Journal' if journal else 'Create Journal' }}

/journals/
Leave blank to auto-generate from name
Year the journal was established
{% if journal and journal.cover_image %}
Current cover
{% endif %}
Recommended size: 600x800px. Max 5MB.

Cancel
Preview
Journal Name

Description will appear here

{% if journal %}
Statistics
  • Published Articles {{ journal.articles.count() }}
  • Created {{ journal.created_at.strftime('%b %d, %Y') }}
  • Last Updated {{ journal.updated_at.strftime('%b %d, %Y') if journal.updated_at else 'Never' }}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}