{% extends 'base.html' %} {% block title %}{{ 'Edit' if article else 'Create' }} Article | Admin | {{ settings.site_name }}{% endblock %} {% block content %} Dashboard Articles {{ 'Edit' if article else 'Create' }} {{ 'Edit Article' if article else 'Create Article' }} Article Details Title * URL Slug /articles/ Leave blank to auto-generate Authors * Abstract {{ article.abstract if article else '' }} Full Content {{ article.content if article else '' }} HTML formatting is supported Keywords Separate with commas SEO & Metadata Meta Title Meta Description {{ article.meta_description if article else '' }} Publish Published Publish Date {{ 'Update' if article else 'Create' }} Article {% if article %} Preview Article {% endif %} Cancel Organization Journal Select a journal {% for journal in journals %} {{ journal.name }} {% endfor %} Tags {% for tag in tags %} {{ tag.name }} {% endfor %} Access & Identifiers Open Access DOI Leave blank to auto-generate Volume Issue Pages PDF File {% if article and article.pdf_file %} Current: {{ article.pdf_file }} {% endif %} Upload PDF (max 16MB) {% endblock %}