source: asadb/template/fysm/fysm_listing.html @ 07aa6da

fysm-4-1space-accessstablestagetest-hooks
Last change on this file since 07aa6da was 1a377f0, checked in by Alex Dehnert <adehnert@…>, 15 years ago

Fix the dashes in the intro letter

The "consensus" of -c adehnert appears to be that a closing should not have
a dash if it has "Sincerely" or similar. I'm not totally sure about that,
but whatever.

  • Property mode set to 100644
File size: 3.0 KB
Line 
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 &mdash; they're a
15great place to meet people, practice old skills and learn new ones, have fun,
16and give back to the community.  Undergraduate and graduate students, along
17with other MIT community members, participate in more than 450 recognized
18activities and organizations.  Below is an overview of some of these student
19groups compiled by the <a href="http://web.mit.edu/asa">Association of Student
20Activities (ASA)</a>.</p>
21
22<p>If you can't find a particular group or activity, remember that these are
23just some of the more than 450 groups recognized by the ASA.  You can also look
24at a current listing of activities on the <a
25href="http://web.mit.edu/asa/resources/group-list.html">ASA website</a>. If you
26still can't find what you're looking for, then you can apply to <a
27href="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
30for more than 200 groups, lots of giveaways, and some performances.  The Midway
31is 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
34href="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
Note: See TracBrowser for help on using the repository browser.