401
by Dan Garner
Layout view (in progress) |
1 |
{% extends "authed.twig" %} |
2 |
||
441.1.13
by Dan Garner
Start work on pushing permissions down into Factory classes |
3 |
{% block pageContent %} |
401
by Dan Garner
Layout view (in progress) |
4 |
<div class="jumbotron"> |
5 |
<div class="container"> |
|
447.1.44
by Dan Garner
User welcome page |
6 |
{% set appName = theme.getConfig("app_name") %} |
7 |
<h1>{% trans %}Welcome to the {{ appName }} CMS!{% endtrans %}</h1> |
|
8 |
<p>{% trans "Digital Signage for Everyone" %}</p> |
|
9 |
<p>{% trans %}We hope you like {{ appName }} and have given you some suggestions below to get you started.{% endtrans %}</p> |
|
10 |
<a class="btn btn-primary btn-lg" role="button" href="{{ help.dashboard }}" target="_blank">{% trans "Getting Started Guide" %}</a> |
|
401
by Dan Garner
Layout view (in progress) |
11 |
</div> |
12 |
</div> |
|
13 |
<div class="row"> |
|
14 |
<div class="col-sm-offset-1 col-sm-10"> |
|
15 |
<div id="new-user-welcome-carousel" class="carousel slide" data-ride="carousel"> |
|
16 |
<!-- Indicators -->
|
|
17 |
<ol class="carousel-indicators"> |
|
18 |
<li data-target="#new-user-welcome-carousel" data-slide-to="0" class="active"></li> |
|
19 |
<li data-target="#new-user-welcome-carousel" data-slide-to="1"></li> |
|
20 |
<li data-target="#new-user-welcome-carousel" data-slide-to="2"></li> |
|
21 |
</ol> |
|
22 |
||
23 |
<!-- Wrapper for slides -->
|
|
24 |
<div class="carousel-inner"> |
|
25 |
<div class="item active"> |
|
447.1.44
by Dan Garner
User welcome page |
26 |
<img src="{{ theme.uri('img/screenshots/display_add_screenshot.png') }}" alt="Slide 1"> |
27 |
<div class="carousel-caption"> |
|
28 |
<h3>{% trans "Display" %}</h3> |
|
29 |
<p>{% trans "Displays are your physical hardware players connected to your TV/Projector. Connect your first display to get started." %}</p> |
|
30 |
<div class="btn-group"> |
|
31 |
<a class="btn btn-primary btn-lg" role="button" href="{{ help.display }}">{% trans "Manage Displays" %}</a> |
|
32 |
<a class="btn btn-default btn-lg" role="button" href="{{ help.windows }}" target="_blank">{% trans "Windows" %}</a> |
|
33 |
</div> |
|
34 |
</div> |
|
35 |
</div> |
|
36 |
<div class="item"> |
|
37 |
<img src="{{ theme.uri('img/screenshots/layout_design_screenshot.png') }}" alt="Slide 2"> |
|
38 |
<div class="carousel-caption"> |
|
39 |
<h3>{% trans "Layout" %}</h3> |
|
40 |
<p>{% trans "Screen design and presentation is managed on a Layout. You can have as many layouts as you want and design them in the CMS." %}</p> |
|
41 |
<div class="btn-group"> |
|
42 |
<a class="btn btn-primary btn-lg" role="button" href="{{ urlFor("layout.view") }}">{% trans "Design a Layout" %}</a> |
|
43 |
<a class="btn btn-default btn-lg" role="button" href="{{ help.layout }}" target="_blank">{% trans "Read more" %}</a> |
|
44 |
</div> |
|
45 |
</div> |
|
46 |
</div> |
|
47 |
<div class="item"> |
|
48 |
<img src="{{ theme.uri('img/screenshots/calendar_screenshot.png') }}" alt="Slide 3"> |
|
49 |
<div class="carousel-caption"> |
|
50 |
<h3>{% trans "Schedule" %}</h3> |
|
51 |
<p>{% trans "Send something down to your display and watch it come alive! Create events on Displays / Groups for Layouts / Campaigns, create repeat events and much more." %}</p> |
|
52 |
<div class="btn-group"> |
|
53 |
<a class="btn btn-primary btn-lg" role="button" href="{{ urlFor("schedule.view") }}">{% trans "Schedule Event" %}</a> |
|
54 |
<a class="btn btn-default btn-lg" role="button" href="{{ help.schedule }}" target="_blank">{% trans "Read more" %}</a> |
|
401
by Dan Garner
Layout view (in progress) |
55 |
</div> |
56 |
</div> |
|
57 |
</div> |
|
58 |
</div> |
|
59 |
||
60 |
<!-- Controls -->
|
|
61 |
<a class="left carousel-control" href="#new-user-welcome-carousel" role="button" data-slide="prev"> |
|
62 |
<span class="glyphicon glyphicon-chevron-left"></span> |
|
63 |
</a> |
|
64 |
<a class="right carousel-control" href="#new-user-welcome-carousel" role="button" data-slide="next"> |
|
65 |
<span class="glyphicon glyphicon-chevron-right"></span> |
|
66 |
</a> |
|
67 |
</div> |
|
68 |
</div> |
|
69 |
</div> |
|
70 |
{% endblock %} |