Changeset - 798d4aee8f8a
[Not reviewed]
0 2 0
Daniel Takamori (pono) - 3 years ago 2021-10-21 20:55:13
pono@sfconservancy.org
fix sustainer text and button for sustaining
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
www/conservancy/templates/supporter/form_partial.html
Show inline comments
...
 
@@ -89,72 +89,72 @@ This partial accepts these optional parameters:
 
        <label for="on0">Do you want to receive
 
          {% if form_id == "renewal" %}
 
          another
 
          {% else %}
 
          a
 
          {% endif %}
 
          shirt? </label>
 
        <div class="input-group">
 
          <input type="radio" tabindex="20" name="on0" value="wantGiftYes">Yes
 
          <input type="radio" tabindex="20" checked="checked" name="on0" value="wantGiftNo">No
 
        </div>
 
      </div>
 

	
 
      <div class="supporter-form-input t-shirt-size-selector">
 
        <label for="os0">Shirt size: </label>
 
        <div class="input-group">
 
          <select name="os0" tabindex="30">
 
            <optgroup label="Men's Tees">
 
              <option value="MenS">Men's S</option>
 
              <option value="MenM">Men's M</option>
 
              <option value="MenL">Men's L</option>
 
              <option value="MenXL">Men's XL</option>
 
              <option value="Men2XL">Men's 2XL</option>
 
            </optgroup>
 
            <optgroup label="Women's Standard Tees">
 
              <option value="StandardLadiesS">Standard Women's S</option>
 
              <option value="StandardLadiesM">Standard Women's M</option>
 
              <option value="StandardLadiesL">Standard Women's L</option>
 
              <option value="StandardLadiesXL">Standard Women's XL</option>
 
              <option value="StandardLadies2XL">Standard Women's 2XL</option>
 
            </optgroup>
 
            <optgroup label="Women's Fitted Tees">
 
              <option value="FittedLadiesS">Fitted Women's S</option>
 
              <option value="FittedLadiesM">Fitted Women's M</option>
 
              <option value="FittedLadiesL">Fitted Women's L</option>
 
              <option value="FittedLadiesXL">Fitted Women's XL</option>
 
              <option value="FittedLadies2XL">Fitted Women's 2XL</option>
 
            </optgroup>
 
          </select>
 
        </div>
 
        <p>Size info: <a href="https://i.shgcdn.com/e2b59b75-4177-4993-9d89-1cb212e189af/-/format/auto/-/preview/3000x3000/-/quality/lighter/">Women's</a>,
 
          <a href="https://i.shgcdn.com/e2b59b75-4177-4993-9d89-1cb212e189af/-/format/auto/-/preview/3000x3000/-/quality/lighter/">Men's</a></p>
 
      </div>
 

	
 
      <div class="supporter-form-input">
 
        <label for="publicAck">
 
          Should we add you to the <a href="/sponsors#sustainers" target="_blank">Conservancy Sustainers list</a>? </label>
 
        <div class="input-group">
 
          <input type="radio" tabindex="40" checked="checked" name="on1" value="publicAckYes">Yes
 
          <input type="radio" tabindex="40" name="on1" value="publicAckNo">No
 
        </div>
 
      </div>
 

	
 
      <div class="supporter-form-input">
 
        <label for="joinList">Join Conservancy's
 
          low-traffic announcement list? </label>
 
        <div class="input-group">
 
          <input type="radio" tabindex="50" checked="checked" name="os1" value="joinListYes">Yes
 
          <input type="radio" tabindex="50" name="os1" value="joinListNo">No
 
        </div>
 
      </div>
 
    </div>
 

	
 
    <div class="supporter-form-submit">
 
      <input style="height: 40px; width: 180px; font-size: 18px;" type="submit" value="Become a sustainer!" alt="{{ verb|capfirst }} as {{ article }} {{ supptype|capfirst }} Sustainer Now!">
 
      <input style="height: 40px; width: 180px; font-size: 18px;background-color: rgb(175, 228, 120);" type="submit" value="Become a Sustainer!" alt="{{ verb|capfirst }} as {{ article }} {{ supptype|capfirst }} Sustainer Now!">
 
      <p>This button will send you to PayPal's site to select a payment
 
        method and finish this process.  Please double-check your selections
 
        first.</p>
 
    </div>
 
  </form>
 
</div>
 
{% endwith %}
www/conservancy/templates/supporter/index.html
Show inline comments
 
{% extends "base_conservancy.html" %}
 
{% load static %}
 
{% block subtitle %}Support Conservancy - {% endblock %}
 
{% block category %}sustainer{% endblock %}
 

	
 
{% block head %}
 
<script type="text/javascript" src="/js/supporter-page.js"></script>
 
<link href="/css/forms.css" rel="stylesheet" type="text/css"/>
 
{% include "opengraph_partial.html" with url="/sustainer/" title="Support Conservancy!" description="Software freedom is critical to many of today&rsquo;s most pressing social issues, but it&rsquo;s only effective when FOSS is for everyone. Support Conservancy today to help make that happen!" %}
 
{% include "opengraph_urllist_partial.html" with property='image' urls='' fallback='/img/conservancy-logo.png' %}
 
{% endblock %}
 

	
 
{% block content %}
 
<div class="breadcrumbs">
 
  <p><a href="/">Home</a> / <a href="/about">Who We Are</a></p>
 
</div>
 

	
 
<div class="content-with-donate-sidebar" id="formStart">
 

	
 

	
 
{% if partial_amount > 0 %}
 
  {% include "supporter/form_partial.html" with form_id="annual" min_amt=minimum_amount partial_amt=partial_amount article="an" only %}
 
{% else %}
 
  <div class="supporter-type-selector">
 
    <strong>Become a Sustainer Now:</strong>
 
    <a id="annualSelector" href="#annual">Annual</a>
 
    | <a id="monthlySelector" href="#monthly">Monthly</a>
 
    | <a id="renewalSelector" href="#renewal">Annual Renew</a>
 
  </div>
 

	
 
  {% include "supporter/form_partial.html" with form_id="annual" min_amt=120 article="an" only %}
 

	
 
  {% include "supporter/form_partial.html" with form_id="monthly" min_amt=10 only %}
 

	
 
  <a name="renew" class="hidden"></a>
 
  {% include "supporter/form_partial.html" with form_id="renewal" min_amt=120 verb="renew" article="an" supptype="annual" only %}
 
{% endif %}
 

	
 
<span id="form-correction-needed" class="form-error">Please ensure all form data above is correct.</span>
 

	
 

	
 
<hr style="clear: both;"/>
 
<br>
 
<p>We're decided to change the name of our donors from "supporters" to "Sustainers." You're not just people who "support" our work. You are the ones who contribute significantly and come back year after year. It is because of you that we can do our work in a strategic, long-term way. Accordingly, we are changing the name to "Sustainers" -- after all, you are what sustains this work. We could not do this without financial contributions of individuals like you and all of our Sustainers.</p>
 
<p>Sustainers help us do our work in a strategic, long-term way. We could not do this without the support and financial contributions of individuals like you. You can see a list of our Sustainers <a href="/sponsors/#sustainers">here</a>.</p>
 

	
 
<div class="expandable-section" id="2020-summary">
 

	
 
<div style="overflow: auto">
 
<div class="picture-small right">
 
  <img src="/img/scaled-LLW-2015-Conservancy-Supporters-by-Carlo-Piana-CC-0.jpg" alt="Zack, Karen, John and Jim pose, mostly wearing the vintage t-shirt!" />
 
  <p>Vintage-shirt-wearing Sustainers pose with Karen! <br/>From left: Stefano &ldquo;Zack&rdquo; Zacchiroli, Karen M. Sandler, John Sullivan, and Jim Wright</p>
 
</div>
 

	
 
<h3 id="VintageT">Vintage T-Shirt Promotion</h3>
 
<div data-read-more="Would you like a last chance to receive a vintage Conservancy t-shirt?  Find out how&hellip;">
 

	
 
<p>If you're a Sustainer, you've already received or will soon receive a
 
  t-shirt in our 2018 design shown here.   But,
 
would you like to take advantage of a last chance to get our vintage design &mdash; seen sported so often
 
by <a href="https://twitter.com/bensturmfels/status/599118574641262592">our earliest Sustainers</a> at <a href="https://twitter.com/conservancy/status/786480068512002048">conferences and events</a>?  If so, read on!</p>
 

	
 
<div class="picture-tiny left">
 
<img src="/img/brett-in-2018-shirt.jpg" alt="Brett wears the 2018 t-shirt!" />
 
<p><a href="/about/staff/#brett">Brett Smith</a> wears the current t-shirt design.</p>
 
</div>
 

	
 
<p><strong>UPDATE: Just give $256 total for this year's fundraiser and
 
    receive an additional vintage T-shirt!</strong></p>
 

	
 
<p>But first, as a note to how difficult this year has been, we know that many of our 2019 Sustainers are still
 
awaiting their t-shirts, which have the wonderful 2018 design.   We've had difficulty working through
 
keeping our staff safe during the pandemic lock downs and making trips to the post office &mdash; historically,
 
we on staff all shared the post office trips, but we all have different COVID-19 risk factors and thus it's all moving
 
slowly.  We appreciate the patience of our Sustainers waiting for t-shirts, and we do have plan to safely send out
 
the backlog by years' end.</p>
 

	
 
<p>As part of those preparations, we found a treasure trove and now have an exciting promotion for renewing
 
Sustainers.  We found an old stash of <strong>vintage t-shirts</strong>, in the old style!  Supplies are limited,
 
but for those few sustainers who would like to receive one, we have a special offer.  Sustainers who give
 
$256 or more between 2020-01-15 and 2021-01-15 can receive one of these vintage t-shirts!  To claim your vintage t-shirt, do the following:
 

	
 
<div class="picture-tiny right">
 
  <img src="/img/2019-08-26_Neil-alone_GUADECSupporterNight.jpg" alt="Neil McGovern, Executive Director of the GNOME Foundation, wears the vintage t-shirt!" />
 
  <p>Neil McGovern wearing that stylish vintage shirt!</p>
 
</div>
 

	
 
    <ul>
 
    <li>Renew as a <a href="/sustainer/#annual">an annual sustainer</a> for $256 or more. (Alternatively, if
 
      you already gave this year, make a <a href="/donate/">separate donation</a> so that your 2020 total is $256.)</li>
 
      <li> <a href="mailto:vintaget@sfconservancy.org">Email &lt;vintaget@sfconservancy.org&gt;</a> and include the email
 
      address and date(s) of your donation(s) that total $256 and your
 
        desired size.  (We have all sizes <strong>except MenM</strong> in
 
      stock.   Supplies <em>are</em> limited; we cannot necessarily guarantee
 
      your size selection, and we'll continue to update here as sizes run out.)</li>
 
      </ul></p>
 

	
 
<div class="picture-small left">
 
  <img src="/img/2020-12-04_lots-vintage-shirts.jpg" alt="A big stack of vintage Conservancy t-shirts!" />
 
  <p>Supplies won't last; give $256 and make one of these vintage shirts yours today!</p>
 
</div>
 

	
 
<p>You too can look cool in the vintage design.  Or maybe your original has faded and you're ready to spruce up with a new one?  As we said,
 
supplies are limited so make a big donation today, support Conservancy, and show you've always been old-school &mdash; or just
 
want to look that way!</p>
 
</div>
 

	
 
</div>
 
<a class="expander" data-expand-link-text="(Expand All Sections)"></a>
0 comments (0 inline, 0 general)