-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathItemDetails.html
135 lines (123 loc) · 3.05 KB
/
ItemDetails.html
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<html>
<head>
<style type="text/css">
body {
padding: 10px 0 10px 10px;
margin: 0;
width: 350px;
font-family: Verdana;
font-size: 14px;
color: #b7a266;
}
.image {
display: block;
float: left;
max-width: 120px;
max-height: 120px;
margin-right: 5px;
-webkit-border-radius: 10px;
}
h1 {
font-family: Corsiva Hebrew;
font-size: 32px;
font-weight: normal;
}
table {
clear: both;
width: 100%;
}
th {
font-size: 14px;
text-align: left;
font-weight: normal;
}
td {
font-size: 14px;
text-align: right;
max-width: 230px;
overflow: hidden;
}
td.grad {
background-image: URL("grad.png");
background-repeat: no-repeat;
}
a {
color: #ccccff;
}
p {
white-space: pre-wrap;
overflow: hidden;
}
input {
display: block;
padding: 4px 10px;
}
.BioWare {
color: #5e7391;
font-family: Arial Black;
font-size: 28px;
}
.info {
color: #ffa266;
padding: 2px;
}
</style>
</head>
<body>
%?imageData%<img class="image" src="data:image/tiff;base64,%imageData%" />%!imageData%
<h1>%?BioWare%<span class="BioWare">B</span> %!BioWare%%Title%</h1>
%?offers% <p class="info">Offer installed.</p>%!offers%
%?OfferItem% <p class="info">This is an offer, not an addin.
That means it has limited functionality aimed at selling premium content. The premium addin usually requires the offer to be installed, however.</p>%!OfferItem%
%?missingFiles% <p class="info">Files missing: %missingFiles%.</p>%!missingFiles%
<table>
%?Version% <tr><td class="grad" colspan="3"></td></tr>
<tr>
<th>Version:<th>
<td>%Version%</td>
</tr>
%!Version%%?Publisher% <tr><td class="grad" colspan="3"></td></tr>
<tr>
<th>Publisher:<th>
<td>%Publisher%</td>
</tr>
%!Publisher%%?ReleaseDate% <tr><td class="grad" colspan="3"></td></tr>
<tr>
<th>Release date:<th>
<td>%ReleaseDate%</td>
</tr>
%!ReleaseDate%%?GameVersion% <tr><td class="grad" colspan="3"></td></tr>
<tr>
<th>Required game version:<th>
<td>%GameVersion%</td>
</tr>
%!GameVersion%%?URL% <tr><td class="grad" colspan="3"></td></tr>
<tr>
<th>URL:<th>
<td><a href="%URL%">%URL%</a></td>
</tr>
%!URL%%?offers% <tr><td class="grad" colspan="3"></td></tr>
<tr>
<th>Price:<th>
<td>%Price% points</td>
</tr>
%!offers% <tr><td class="grad" colspan="3"></td></tr>
<tr>
<th>Details:</th>
</tr>
<tr><td class="grad" colspan="3"></td></tr>
</table>
%?UnknownPath% <p class="info">This is an item found in your packages folder.</p> <table><tr><td class="grad" colspan="3"></td></tr></table>
%!UnknownPath%
%?Description% <p>%Description%</p>%!Description%
<br />
<!--dazip--><form action="command:install" method="POST">
<input type="submit" value="Install" />
</form><!--/dazip-->
%?UnknownPath%
<form action="command:assign" method="POST">
<input type="submit" value="Assign to AddIn" />
</form>
%!UnknownPath%
</body>
</html>