{% extends 'base.html' %} {% block content %}

Submission Portal

Submit a new entry

{% if messages %}

Error during creation of new submission!

    {% for message in messages %}
  • {{ message }}

  • {% endfor %}
{% endif %}

Don't know where to start?

For help on how to create MITE entries, check out the video tutorial or the Tutorial page.

How about creating a new entry from one of the publications in the MITE paper collection?

{% if kanban %}
{% for column, prs in kanban.items() %}

{{ column }}

{% for pr in prs %}
{{ pr.title }}
created at {{ pr.created_at }}
{% endfor %}
{% endfor %}
{% else %}

Kanban board not supported in development mode.

{% endif %}
{% endblock %}