1 | {% extends "base-plain.html" %} |
---|
2 | {% load formcats %} |
---|
3 | |
---|
4 | {% block title %}First Year Summer Mailing{% endblock %} |
---|
5 | {% block content %} |
---|
6 | |
---|
7 | <div class='fysm-summarystrip'> |
---|
8 | <h3 class='display-name'>First Year Summer Mailing ({{year}})</h3> |
---|
9 | </div> |
---|
10 | |
---|
11 | <div style='margin: 1em;'> |
---|
12 | <p>Hello incoming MIT students!</p> |
---|
13 | |
---|
14 | <p>Student activities play an important role in student life at MIT — they're a |
---|
15 | great place to meet people, practice old skills and learn new ones, have fun, |
---|
16 | and give back to the community. Undergraduate and graduate students, along |
---|
17 | with other MIT community members, participate in more than 450 recognized |
---|
18 | activities and organizations. Below is an overview of some of these student |
---|
19 | groups compiled by the <a href="http://web.mit.edu/asa">Association of Student |
---|
20 | Activities (ASA)</a>.</p> |
---|
21 | |
---|
22 | <p>If you can't find a particular group or activity, remember that these are |
---|
23 | just some of the more than 450 groups recognized by the ASA. You can also look |
---|
24 | at a current listing of activities on the <a |
---|
25 | href="http://web.mit.edu/asa/resources/group-list.html">ASA website</a>. If you |
---|
26 | still can't find what you're looking for, then you can apply to <a |
---|
27 | href="http://web.mit.edu/asa/start/index.html">start your own group</a>.</p> |
---|
28 | |
---|
29 | <p>The ASA also organizes an Activities Midway during Orientation with booths |
---|
30 | for more than 200 groups, lots of giveaways, and some performances. The Midway |
---|
31 | is the afternoon of Friday, September 3 in the Johnson Athletic Center.</p> |
---|
32 | |
---|
33 | <p>You can learn more about the ASA and MIT student activities in general on <a |
---|
34 | href="http://web.mit.edu/asa">our website</a>.</p> |
---|
35 | |
---|
36 | <p>We look forward to seeing you in fall!</p> |
---|
37 | |
---|
38 | <p>Sincerely,</p> |
---|
39 | <p><a href="http://web.mit.edu/asa/about/board-members.html">The ASA Executive Board</a></p> |
---|
40 | |
---|
41 | </div> |
---|
42 | |
---|
43 | <div style='padding: 1em;'> |
---|
44 | {% if category %} |
---|
45 | <h2>{{category.name}} Groups</h2> |
---|
46 | <p>{{category.blurb}}</p> |
---|
47 | <p><a href='{% url fysm year %}'>Return to all categories</a></p> |
---|
48 | {% else %} |
---|
49 | <h3>View by Category</h3> |
---|
50 | <p>In addition to the complete index below, you can click on one of these categories to look at a specific type of groups.</p> |
---|
51 | <ul> |
---|
52 | {% for cat in categories %} |
---|
53 | <li><a href='{% url fysm year cat.slug %}'>{{cat}}</a></li> |
---|
54 | {% endfor %} |
---|
55 | </ul> |
---|
56 | {% endif %} |
---|
57 | </div> |
---|
58 | |
---|
59 | {% for fysm in fysm_list %} |
---|
60 | <div class='single-fysm-entry'> |
---|
61 | <h3><a href='{% url fysm-view year fysm.pk %}'>{{fysm.display_name}}</a></h3> |
---|
62 | <div class='fysm-body'> |
---|
63 | <div class='logo'> |
---|
64 | {% if fysm.logo %} |
---|
65 | <img src='{{ MEDIA_URL }}{{fysm.logo}}' alt='{{fysm.display_name}} logo' /> |
---|
66 | {% else %} |
---|
67 | <p>[ No logo ]</p> |
---|
68 | {% endif %} |
---|
69 | </div> |
---|
70 | <p class='data'>{{fysm.description}}</p> |
---|
71 | <p class='join'><a href='{% url fysm-link year "join" fysm.pk %}'>Join {{fysm.display_name}}!</a> Have questions? Send them to <a href='mailto:{{fysm.contact_email}}'>{{fysm.contact_email}}</a>!</p> |
---|
72 | </div> |
---|
73 | {% if fysm.tags %} |
---|
74 | <p class='tags'>tags: {{fysm.tags}}</p> |
---|
75 | {% endif %} |
---|
76 | {% if fysm.categories.all %} |
---|
77 | <p class='tags'>categories: {{fysm|format_categories:year}}</p> |
---|
78 | {% endif %} |
---|
79 | </div> |
---|
80 | {% endfor %} |
---|
81 | |
---|
82 | {% endblock %} |
---|
83 | |
---|