{% extends "base.html" %} {% block content %}
{% include 'messages.html' %} {% if logged_in %} {% if proposal %} {% set headline = proposal.headline %} {% set content = proposal.content %} {% set date_added = proposal.date_added.strftime('%Y-%m-%d') %} {% set pid = proposal.id %} {% set funds_target = proposal.funds_target %} {% set addr_receiving = proposal.addr_receiving if proposal.addr_receiving else '' %} {% else %} {% set headline = '' %} {% set content = '' %} {% set date_added = '' %} {% set pid = '' %} {% set funds_target = '' %} {% set addr_receiving = '' %} {% endif %}

Add proposal

This page allows you to add your funding proposal. Some help:

  1. Proposals are written in Markdown format. Use the HTML preview functionality of the editor.
  2. Introduce yourself, investors would like to know who they are funding
  3. Try to seek out community approval for your idea(s) before submitting a request
  4. Keep it short and clean
  5. Good luck!
{% if current_user.admin %}

Admin options:

{% endif %}
{% include 'sidebar.html' %}
{% else %}
To submit your proposal, login or register.
{% endif %}
{% endblock %}