Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / astakosgroup_create_list.html @ 3b258643

History | View | Annotate | Download (2.5 kB)

1
{% extends "im/account_base.html" %}
2

    
3
{% block body %}
4
<div class="projects">
5
        <div class="clearfix">
6
                <p>You can create the followind type of projects:</p>
7
        </div>
8
        
9
        <div class="two-cols clearfix dotted">
10
                <div class="rt centered">
11
                        <img alt="THINK ABOUT IT" src="/static/medialibrary/2012/04/proffessor.png">
12
                </div>
13
                <div class="lt">
14
                        <h2 style="color:#B66D00;">COURSE</h2>
15
                    <div>
16
                            <p>You wake up one morning and you need a new computer with a specific operating system and hardware requirements (or 10 new computers). You also need 10GB of storage space to store some new content you just got your hands on (or 50GB ;-)).</p>
17
                            <a href="{% url group_add 'course' %}" class="submit">CREATE COURSE</a>
18
                    </div>
19
                </div>
20
        </div>
21
        <div class="two-cols clearfix dotted">
22
                <div class="rt centered">
23
                        <img alt="THINK ABOUT IT" src="/static/medialibrary/2012/06/behind_okeanos.png">
24
                </div>
25
                <div class="lt">
26
                        <h2 style="color:#4085A6;">PROJECT</h2>
27
                    <div>
28
                            <p>You wake up one morning and you need a new computer with a specific operating system and hardware requirements (or 10 new computers). You also need 10GB of storage space to store some new content you just got your hands on (or 50GB ;-)).</p>
29
                            <a href="{% url group_add 'project' %}" class="submit">CREATE PROJECT</a>
30
                    </div>
31
                </div>
32
        </div>
33
        <div class="two-cols clearfix dotted">
34
                <div class="rt centered">
35
                        <img alt="THINK ABOUT IT" src="/static/medialibrary/2012/06/from_athens.png">
36
                </div>
37
                <div class="lt">
38
                        <h2 style="color:#EF4F54;">ORGANISATION</h2>
39
                    <div>
40
                            <p>You wake up one morning and you need a new computer with a specific operating system and hardware requirements (or 10 new computers). You also need 10GB of storage space to store some new content you just got your hands on (or 50GB ;-)).</p>
41
                            <a href="{% url group_add 'organization' %}" class="submit">CREATE ORGANISATION</a>
42
                    </div>
43
                </div>
44
        </div>
45
        <div class="two-cols clearfix dotted">
46
                <div class="rt centered">
47
                        <img alt="THINK ABOUT IT" src="/static/medialibrary/2012/04/researcher.png">
48
                </div>
49
                <div class="lt">
50
                        <h2 style="color:#FF7CA4;">LAB</h2>
51
                    <div>
52
                            <p>You wake up one morning and you need a new computer with a specific operating system and hardware requirements (or 10 new computers). You also need 10GB of storage space to store some new content you just got your hands on (or 50GB ;-)).</p>
53
                            <a href="{% url group_add 'laboratory' %}" class="submit">CREATE LAB</a>
54
                    </div>
55
                </div>
56
        </div>
57
</div>
58

    
59
{% endblock body %}