Changeset - 389a4fd5fad5
[Not reviewed]
0 1 0
Brett Smith - 4 years ago 2019-09-30 15:46:15
brettcsmith@brettcsmith.org
dashboard: Change sponsorship contact.
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/dashboard.html
Show inline comments
...
 
@@ -112,42 +112,42 @@
 
                    {% endfor %}
 
                </table>
 
            {% endif %}
 
        {% endif %}
 
    </div>
 

	
 
    {% include "registrasion/dashboard_widget.html" %}
 

	
 
    <div class="panel panel-default">
 
        <div class="panel-heading">
 
            <div class="pull-right header-actions">
 
                {% if not user.sponsorships.exists %}
 
                    <a href="mailto:sponsors@northbaypython.org" class="btn btn-xs btn-default">
 
                    <a href="mailto:contact@copyleftconf.org?subject=Sponsorship%20inquiry" class="btn btn-xs btn-default">
 
                        <i class="fa fa-plus-sign"></i>
 
                        Apply to be a sponsor
 
                    </a>
 
                    <a href="/sponsors/prospectus" class="btn btn-xs btn-default">
 
                      Read our prospectus
 
                    </a>
 
                {% endif %}
 
            </div>
 
            <h3 class="panel-title">
 
                <i class="fa fa-briefcase"></i>
 
                {% trans "Sponsorship" %}
 
            </h3>
 
        </div>
 

	
 
        <div class="panel-body">
 
            {% if not user.sponsorships.exists %}
 
                <p>If you or your organization would be interested in sponsorship opportunities, <a href="mailto:sponsors@northbaypython.org">email our sponsorship contact</a>.
 
                <p>If you or your organization would be interested in sponsorship opportunities, please <a href="mailto:contact@copyleftconf.org?subject=Sponsorship%20inquiry">email our sponsorship contact</a>.
 
            {% else %}
 
                <h4>Your Sponsorship</h4>
 
                <ul class="list-group">
 
                    {% for sponsorship in user.sponsorships.all %}
 
                        <li class="list-group-item">
 
                            <a href="{% url "sponsor_detail" sponsorship.pk %}"><b>{{ sponsorship.name }}</b></a>
 
                            ({{ sponsorship.level }})
 
                            {% if not sponsorship.active %}
 
                                <span class="label label-warning">awaiting approval</span>
 
                            {% endif %}
 
                        </li>
 
                    {% endfor %}
0 comments (0 inline, 0 general)