Skip to content
Snippets Groups Projects

Update master

4 files
+ 233
22
Compare changes
  • Side-by-side
  • Inline

Files

<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>TAM</title>
<link rel="icon" href="./assets/favicon.ico"/>
<!-- Required Stylesheets -->
<link type="text/css" rel="stylesheet" href="https://unpkg.com/bootstrap/dist/css/bootstrap.min.css"/>
<link type="text/css" rel="stylesheet" href="https://unpkg.com/bootstrap-vue@latest/dist/bootstrap-vue.css"/>
<link type="text/css" rel="stylesheet" href="./assets/style.css"/>
<!-- Required scripts -->
<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/babel-polyfill@latest/dist/polyfill.min.js"></script>
<script src="https://unpkg.com/bootstrap-vue@latest/dist/bootstrap-vue.js"></script>
</head>
<body>
<div id="app">
<div id="navigation">
<b-navbar toggleable="md" type="dark" variant="delft">
<div class="container">
<b-navbar-brand href="/">TAM</b-navbar-brand>
</div>
</b-navbar>
</div>
<div id="content">
<div id="about" class="my-4">
<div class="text-left container"><h2>About TAM</h2>
<p>
You're looking at TAM, short for the <strong>T</strong>eaching <strong>A</strong>ssistant
<strong>M</strong>anagement platform.
This platform has been developed to allow students to express their interest in TA'ing courses for
the Computer Science programmes
at Delft University of Technology.
</p>
<h3>🤔 How does it work?</h3>
<p>
As a student you can login on the platform and indicate which courses you would like to be an
assistant for.
Furthermore you can indicate your availability and maximum hours you can/want to spend on one or
multiple TA-jobs.
Every semester the <a href="">CSE Teaching Team</a> will then collect all the preferences and create
a schedule,
taking into account the preferences of the student, lecturer(s) of a course and also the advise of
the Academic Counselors.
<br><br> <em><strong>Note:</strong> expressing your interest does not guarantee that you will get a
job as a TA.</em></p>
<h3>👍 How do I, as a student, indicate my preferences?</h3>
<p>
Log in into the platform and go to 'Preferences'.
When there's an ongoing recruitment phase you will see all courses that need TA's.
At the end of a recruitment phase this list is then send to the lecturers of the respective courses.
They will make a selection of the TAs they want for their course (they can also add people that did
not use TAM themselves).
Their selection will be send back to the CSE Teaching Team to arrange all contracts and other
organizational matters.
</p>
<h3>💸 How do I, as a student, get paid?</h3>
<p>
You will get a contract at <a href="https://www.flexdelft.nl" target="_blank">FlexDelft</a>, the
pay-roll organization of Delft University of Technology.
Salaries are paid out on Tuesdays on a weekly basis.
You enter the hours you have worked per week and the lecturer of a course will then approve your
declaration.
As soon as your declaration has been approved it will be in the next batch of salary payments.
You will get a payslip and annual statement by mail automatically.
For further information you can contact the FlexDelft employees (via email or by visiting their
office in the IDE faculty).
</p>
<h3>🐛 I've found a bug in TAM!</h3>
<p>
In case you have access to the <a href="https://mattermost.ewi.tudelft.nl/cs-tas/channels/tam">CS TA
team on Mattermost</a> you can
report any bug in the "TAM" channel. Alternatively you can send an email to cs-ta-ewi@tudelft.nl,
they will make sure it will be
forwarded to a developer then.
</p>
</div>
</div>
</div>
<nav id="footer" class="navbar navbar-dark bg-delft navbar-expand-md">
<div class="container">
<a rel="noopener" href="https://www.tudelft.nl" target="_blank" class="navbar-brand">
<img height="50" src="/static/TU_Delft_logo_White.png" alt="Delft University of Technology">
</a>
<ul right="" class="navbar-nav">
<li class="nav-item">
<a href="/about.html" class="nav-link active" target="_self">About TAM</a>
</li>
<span class="navbar-text"></span>
<li class="nav-item">
<a href="/privacy-policy.html" class="nav-link" target="_self">Privacy Policy</a>
</li>
</ul>
</div>
</nav>
</div>
<!-- Start running your app -->
<script>
window.app = new Vue({
el: "#app",
data: {},
})
</script>
</body>
</html>
\ No newline at end of file
Loading