GnuCashew ~ Web Application compatible with GnuCash sql data files.
GCW
Loading...
Searching...
No Matches
Sty
gcw_gui.xml
Go to the documentation of this file.
1
<?
xml
version
=
"1.0"
encoding
=
"UTF-8"
?>
2
<
messages
xmlns:if
=
"Wt.WTemplate.conditions"
>
3
4
<
message
id
=
"gcw_gui.doxygen_link"
>/
dox
/
html
/
help_overview.html
</
message
>
5
6
<
message
id
=
"gcw_gui.accounteditor.form.tab1"
>
7
<
table
width
=
"100%"
>
8
<
colgroup
>
9
<
col
width
=
"25%"
/>
10
<
col
width
=
"75%"
/>
11
</
colgroup
>
12
<
tr
> <
td
colspan
=
"3"
> <
h4
><
b
>
Identification
</
b
></
h4
> </
td
> </
tr
>
13
<
tr
> <
td
> <
label
> ${
name-label
} </
label
> </
td
> <
td
> ${
name
} </
td
> </
tr
>
14
<
tr
> <
td
> <
label
> ${
code-label
} </
label
> </
td
> <
td
> ${
code
} </
td
> </
tr
>
15
<
tr
> <
td
> <
label
> ${
desc-label
} </
label
> </
td
> <
td
> ${
desc
} </
td
> </
tr
>
16
<
tr
> <
td
> <
label
> ${
parent-label
} </
label
> </
td
> <
td
> ${
parent
} </
td
> </
tr
>
17
<
tr
> <
td
> <
label
> ${
accountType-label
} </
label
> </
td
> <
td
> ${
accountType
} </
td
> </
tr
>
18
<
tr
> <
td
> <
label
> ${
security-label
} </
label
> </
td
> <
td
> ${
security
} </
td
> </
tr
>
19
<
tr
> <
td
> <
label
> ${
fraction-label
} </
label
> </
td
> <
td
> ${
fraction
} </
td
> </
tr
>
20
<
tr
> <
td
> <
label
> ${
color-label
} </
label
> </
td
>
21
<
td
>
22
<
table
width
=
"100%"
>
23
<
tr
> <
td
> ${
color
} </
td
> <
td
> ${
colordefault
} </
td
> </
tr
>
24
</
table
>
25
</
td
>
26
</
tr
>
27
<
tr
> <
td
> <
label
> ${
notes-label
} </
label
> </
td
> <
td
> ${
notes
} </
td
> </
tr
>
28
<
tr
> <
td
> </
td
>
29
<
td
>
30
<
table
width
=
"100%"
>
31
<
tr
> <
td
> ${
placeholder
} </
td
> <
td
> ${
hidden
} </
td
> <
td
> ${
autoTransfer
} </
td
> </
tr
>
32
<
tr
> <
td
> ${
taxRelated
} </
td
> <
td
> </
td
> <
td
> ${
openingBalance
} </
td
> </
tr
>
33
</
table
>
34
</
td
> </
tr
>
35
</
table
>
36
</
message
>
37
38
<
message
id
=
"gcw_gui.accounteditor.form.tab2"
>
39
more
properties
editor
40
</
message
>
41
42
<
message
id
=
"gcw_gui.accounteditor.form.footer"
>
43
<
table
width
=
"100%"
>
44
<
tr
>
45
<
td
width
=
"99%"
> ${
help
} </
td
>
46
<
td
> ${
cancel
} </
td
>
47
<
td
> ${
ok
} </
td
>
48
</
tr
>
49
</
table
>
50
<
br
/>
51
</
message
>
52
53
<
message
id
=
"gcw_sql.create.0"
>
54
<![CDATA[
55
create table "gcw_users" (
56
"id" integer primary key autoincrement,
57
"version" integer not null,
58
"employee_guid" varchar(32) not null
59
);
60
]]>
61
</
message
>
62
63
<
message
id
=
"gcw_sql.create.1"
>
64
<![CDATA[
65
create table "gcw_vars" (
66
"id" integer primary key autoincrement,
67
"version" integer not null,
68
"keyField" varchar(32) not null,
69
"cfyField" varchar(32) not null,
70
"varField" text not null
71
);
72
]]>
73
</
message
>
74
75
<
message
id
=
"gcw_sql.create.2"
>
76
<![CDATA[
77
create table "gcw_info" (
78
"id" integer primary key autoincrement,
79
"version" integer not null,
80
"user_id" bigint,
81
"password_hash" varchar(100) not null,
82
"password_method" varchar(20) not null,
83
"password_salt" varchar(20) not null,
84
"status" integer not null,
85
"failed_login_attempts" integer not null,
86
"last_login_attempt" text,
87
"email" varchar(256) not null,
88
"unverified_email" varchar(256) not null,
89
"email_token" varchar(64) not null,
90
"email_token_expires" text,
91
"email_token_role" integer not null,
92
constraint "fk_gcw_info_user" foreign key ("user_id") references "gcw_users" ("id") on delete cascade deferrable initially deferred
93
);
94
]]>
95
</
message
>
96
97
<
message
id
=
"gcw_sql.create.3"
>
98
<![CDATA[
99
create table "gcw_identity" (
100
"id" integer primary key autoincrement,
101
"version" integer not null,
102
"gcw_info_id" bigint,
103
"provider" varchar(64) not null,
104
"identity" varchar(512) not null,
105
constraint "fk_gcw_identity_gcw_info" foreign key ("gcw_info_id") references "gcw_info" ("id") on delete cascade deferrable initially deferred
106
);
107
]]>
108
</
message
>
109
110
<
message
id
=
"gcw_sql.create.4"
>
111
<![CDATA[
112
create table "gcw_token" (
113
"id" integer primary key autoincrement,
114
"version" integer not null,
115
"gcw_info_id" bigint,
116
"value" varchar(64) not null,
117
"expires" text,
118
constraint "fk_gcw_token_gcw_info" foreign key ("gcw_info_id") references "gcw_info" ("id") on delete cascade deferrable initially deferred
119
);
120
]]>
121
</
message
>
122
123
<
message
id
=
"gcw_gui.billpay.editwidget.form.main"
>
124
<
div
style
=
"width:100%"
>
125
${
save
} ${
cancel
} ${
delete
} ${
process
}
126
</
div
>
127
<
div
class
=
"billpayedit"
>
128
<
table
class
=
"t1"
>
129
<
tr
><
td
> ${
accountLabel
} </
td
><
td
> ${
dueDayLabel
} </
td
><
td
> ${
minimumLabel
} </
td
><
td
> ${
budgetLabel
} </
td
></
tr
>
130
<
tr
><
td
> ${
account
} </
td
><
td
> ${
dueDay
} </
td
><
td
> ${
minimum
} </
td
><
td
> ${
budget
} </
td
></
tr
>
131
132
<
tr
><
td
> ${
nicknameLabel
} </
td
><
td
> ${
groupLabel
} </
td
><
td
> ${
limitLabel
} </
td
><
td
> ${
actualLabel
} </
td
></
tr
>
133
<
tr
><
td
> ${
nickname
} </
td
><
td
> ${
group
} </
td
><
td
> ${
limit
} </
td
><
td
> ${
actual
} </
td
></
tr
>
134
</
table
>
135
<
table
class
=
"t2"
>
136
<
tr
><
td
> ${
ap
} </
td
></
tr
>
137
<
tr
><
td
> ${
isActive
} </
td
></
tr
>
138
<
tr
><
td
> ${
isVisible
} </
td
></
tr
>
139
<
tr
><
td
> ${
autoPay
} </
td
></
tr
>
140
<
tr
><
td
> ${
payNow
} </
td
></
tr
>
141
</
table
>
142
</
div
>
143
</
message
>
144
145
<
message
id
=
"gcw_gui.billpayeditor.form.tab1"
>
146
<
table
width
=
"100%"
border
=
"1"
>
147
<
tr
>
148
<
td
>
149
<
table
width
=
"50%"
>
150
<
tr
><
td
>${
cb01
}</
td
><
td
>${
cb02
}</
td
><
td
>${
cb03
}</
td
><
td
>${
cb04
}</
td
><
td
>${
cb05
}</
td
><
td
>${
cb06
}</
td
></
tr
>
151
<
tr
><
td
>${
cb07
}</
td
><
td
>${
cb08
}</
td
><
td
>${
cb09
}</
td
><
td
>${
cb10
}</
td
><
td
>${
cb11
}</
td
><
td
>${
cb12
}</
td
></
tr
>
152
<
tr
>
153
<
td
colspan
=
"6"
>
154
<
table
>
155
<
tr
><
td
>
last4
</
td
> <
td
> </
td
> <
td
>
url
</
td
> <
td
> </
td
> </
tr
>
156
<
tr
><
td
> ${
last4
} </
td
> <
td
> ${
clear
} </
td
> <
td
> ${
url
} </
td
> <
td
> ${
go
} </
td
> </
tr
>
157
</
table
>
158
</
td
>
159
</
tr
>
160
</
table
>
161
</
td
>
162
<
td
rowspan
=
"4"
>
163
${
image
}
164
</
td
>
165
</
tr
>
166
<
tr
> <
td
>
Note
</
td
> </
tr
>
167
<
tr
> <
td
colspan
=
"2"
> ${
note
} </
td
> </
tr
>
168
</
table
>
169
</
message
>
170
171
<
message
id
=
"gcw_gui.billpayeditor.form.tab2"
>
172
${
accountRegister
}
173
</
message
>
174
175
<
message
id
=
"gcw_gui.billpay.paymentwidget.form.main"
>
176
<
div
class
=
"billpayment"
>
177
${
table
}
178
${
confirm
}
179
</
div
>
180
</
message
>
181
182
</
messages
>
183
Generated on Thu Oct 2 2025 12:43:35 for GnuCashew ~ Web Application compatible with GnuCash sql data files. by
1.9.8