Newer
Older
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<%= content_for :title, @program %>
<h1><%= @program %></h1>
<p>
<strong>University:</strong>
<%= @program.university %>
</p>
<p>
<strong>Name:</strong>
<%= @program.name %>
</p>
<p>
<strong>Level:</strong>
<%= @program.level %>
</p>
<p>
<strong>Capacity:</strong>
<%= @program.capacity %>
</p>
<p>
<strong>Ects:</strong>
<%= @program.ects %>
</p>
<p>
<strong>Continuing:</strong>
<%= @program.continuing %>
</p>
<p>
<strong>Prerequisites:</strong>
<%= @program.prerequisites %>
</p>
<p>
<strong>Objectives:</strong>
<%= @program.objectives %>
</p>
<p>
<strong>Duration:</strong>
<%= @program.duration %>
</p>
<p>
<strong>Registration:</strong>
<%= @program.registration %>
</p>
<p>
<strong>Pedagogy:</strong>
<%= @program.pedagogy %>
</p>
<p>
<strong>Evaluation:</strong>
<%= @program.evaluation %>
</p>
<p>
<strong>Accessibility:</strong>
<%= @program.accessibility %>
</p>