summaryrefslogtreecommitdiff
path: root/template/confsponsor/dashboard.html
blob: 3dd259156724bc80dff9683da09b28c4c74ebb79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{%extends "nav_events.html" %}
{%block title%}Conference Sponsorship{%endblock%}
{%block content%}
<h1>Conference Sponsorship</h1>
<h2>Current sponsorships</h2>
{%if currentsponsors %}
<p>
You are currently registered as a manager for one or more sponsors at the following conferences:
</p>

<ul>
{%for s in currentsponsors %}
 <li><a href="{{s.id}}/">{{s}}</a> for {{s.conference}} ({{s.level}}){%if not s.confirmed%} - <i>not confirmed yet</i>{%endif%}</li>
{%endfor%}
</ul>
{%else%}
<p>You are not currently registered as the manager of any active sponsorships.</p>
{%endif%}

<h2>Available sponsorships</h2>
{%if conferences%}
<ul>
{%for c in conferences %}
<li><a href="signup/{{c.urlname}}/">{{c}}</a></li>
{%endfor%}
</ul>
{%else%}
<p>There are currently no conferences open for sponsorship. Please check back later!</p>
{%endif%}

<h2>Past sponsorships</h2>
{%if pastsponsors%}
<p>
You are currently registered as a manager for the following past time sponsorships:
</p>
<ul>
{%for s in pastsponsors%}
 <li>{{s}} for {{s.conference}} ({{s.level}})</li>
{%endfor%}
</ul>
{%else%}
<p>You are not currently registered as the manager of any past sponsorships.</p>
{%endif%}
{%endblock%}