blob: 6785a165b0a4f81b9d04f1134c986b413ec7235d (
plain)
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
|
<div data-role="header">
<h1>Usendt rapport</h1>
</div>
<div data-role="content" role="main">
<div id="existing_report">
<% if ( title ) { %>
<h3><%= title %></h3>
<% } %>
<div class="meta">
<p>
<% if ( category && category != '-- Velg en kategori --' ) { %>
Saved in the <%= category %> category
<% } %>
</p>
<p><% print( moment( created ).fromNow() ) %></p>
</div>
<% if ( file ) { %>
<div class="photo" style="background-image: url(<%= file %>)"></div>
<% } %>
<% if ( details ) { %>
<div class="details"><div><%= details %></div></div>
<% } %>
</div>
<div class="right">
<input id="use_report" type="button" value="Fullfør rapporten nå" data-role="button" data-theme="a" />
<input id="save_report" type="button" value="Lagre til senere" data-role="button" data-theme="a" />
<input id="discard" type="button" value="Forkast" data-role="button" data-theme="a" />
</div>
</div>
|