{% extends "base.html" %} {% set active_page = 'project' %} {% block title %}Home{% endblock %} {% block nav_content %} {% endblock %} {% block content %} {% if project.latest_version %}
Latest Version

{{ project.latest_version.version }}

{% if project.latest_version.author %}
Author

{{ project.latest_version.author }}

{% endif %} {% if project.latest_version.maintainer %}
Maintainer

{{ project.latest_version.maintainer }}

{% endif %} {% if urls %}
Project Links
    {% for name, url in urls %} {% endfor %}
{% endif %} {% if grouped_classifiers %}
Classifiers
{% for group, classifiers in grouped_classifiers.items() %}
{{ group }}
    {% for classifier in classifiers %} {% endfor %}
{% endfor %}
{% endif %}

{{ project.name }}

{{ project.latest_version.summary }}
{{ readme | safe }}
{% else %} {% if project.is_admin(current_user.account.name) %}

{{ project.name }}

You can upload new versions to {{ url_for("simple.simple_index", _external=True) }}.

  1. Create an API token under your account settings
  2. Configure your preferred tool to upload
  3. Upload your first version 🎉
{% else %}

The author did not upload any content yet.

{% endif %} {% endif %} {% endblock %}