Files @ 6cb46c61d163
Branch filter:

Location: website/www/conservancy/templates/fossy/community_track_proposal_form.html

bsturmfels
Add initial fossy app
{% extends 'fossy/base.html' %}
{% block outercontent %}
  <h1><abbr title="Free and Open Source Software Yearly">FOSSY</abbr>: Propose a Commmunity Track!</h1>
  <div class="mw7 mb5">
    <p>A large portion of FOSSY will be made up of community run tracks, similar to "DevRooms" at FOSDEM. We'd like to invite you to run a track based on a topic you're passionate about. If selected, you will be responsible for inviting speakers and selecting and scheduling talks for your track. If that sounds like you, please fill in the form to tell us more about your idea. If you have any questions please don't hesitate to email us at <a href="mailto:conference@sfconservancy.org">conference@sfconservancy.org</a>.</p>

    <form action="." method="post" class="mw7">
      {% csrf_token %}

      {% if form.errors %}
        <p class="dark-red bg-washed-red pa2 ba b--red br1">Please review the errors below.</p>
      {% endif %}

      {{ form.as_p }}

      <p><button type="submit" class="ph3 pv2">Submit</button></p>
    </form>
  </div>
{% endblock %}