From 03a9532767255c4d71f822443dc2633619db0a95 Mon Sep 17 00:00:00 2001 From: jengo Date: Fri, 30 Mar 2001 22:20:38 +0000 Subject: [PATCH] Added new template --- admin/templates/idsociety/accesslog.tpl | 27 +++++++ admin/templates/idsociety/accesslog_row.tpl | 10 +++ admin/templates/idsociety/account_form.tpl | 41 +++++++++++ .../idsociety/account_form_buttons.tpl | 4 ++ .../idsociety/account_form_logininfo.tpl | 8 +++ .../idsociety/account_form_password.tpl | 7 ++ admin/templates/idsociety/accounts.tpl | 42 +++++++++++ admin/templates/idsociety/accounts_row.tpl | 11 +++ .../idsociety/accounts_row_empty.tpl | 6 ++ .../templates/idsociety/application_form.tpl | 21 ++++++ .../idsociety/application_form_row.tpl | 4 ++ admin/templates/idsociety/applications.tpl | 30 ++++++++ .../templates/idsociety/applications_row.tpl | 9 +++ admin/templates/idsociety/category_form.tpl | 62 ++++++++++++++++ admin/templates/idsociety/currentusers.tpl | 24 +++++++ .../templates/idsociety/currentusers_row.tpl | 11 +++ admin/templates/idsociety/delete_common.tpl | 16 +++++ admin/templates/idsociety/groups.tpl | 36 ++++++++++ admin/templates/idsociety/groups_form.tpl | 31 ++++++++ admin/templates/idsociety/groups_row.tpl | 8 +++ .../idsociety/images/navbar-over.gif | Bin 0 -> 421 bytes admin/templates/idsociety/images/navbar.gif | Bin 0 -> 330 bytes admin/templates/idsociety/listcats.tpl | 61 ++++++++++++++++ .../idsociety/mainscreen_message.tpl | 15 ++++ .../idsociety/mainscreen_message_row.tpl | 7 ++ .../idsociety/mainscreen_message_row_2.tpl | 6 ++ admin/templates/idsociety/message_row.tpl | 5 ++ admin/templates/idsociety/nntp.tpl | 68 ++++++++++++++++++ 28 files changed, 570 insertions(+) create mode 100755 admin/templates/idsociety/accesslog.tpl create mode 100755 admin/templates/idsociety/accesslog_row.tpl create mode 100755 admin/templates/idsociety/account_form.tpl create mode 100755 admin/templates/idsociety/account_form_buttons.tpl create mode 100755 admin/templates/idsociety/account_form_logininfo.tpl create mode 100755 admin/templates/idsociety/account_form_password.tpl create mode 100755 admin/templates/idsociety/accounts.tpl create mode 100755 admin/templates/idsociety/accounts_row.tpl create mode 100755 admin/templates/idsociety/accounts_row_empty.tpl create mode 100755 admin/templates/idsociety/application_form.tpl create mode 100755 admin/templates/idsociety/application_form_row.tpl create mode 100755 admin/templates/idsociety/applications.tpl create mode 100755 admin/templates/idsociety/applications_row.tpl create mode 100644 admin/templates/idsociety/category_form.tpl create mode 100755 admin/templates/idsociety/currentusers.tpl create mode 100755 admin/templates/idsociety/currentusers_row.tpl create mode 100644 admin/templates/idsociety/delete_common.tpl create mode 100755 admin/templates/idsociety/groups.tpl create mode 100755 admin/templates/idsociety/groups_form.tpl create mode 100755 admin/templates/idsociety/groups_row.tpl create mode 100644 admin/templates/idsociety/images/navbar-over.gif create mode 100644 admin/templates/idsociety/images/navbar.gif create mode 100644 admin/templates/idsociety/listcats.tpl create mode 100755 admin/templates/idsociety/mainscreen_message.tpl create mode 100755 admin/templates/idsociety/mainscreen_message_row.tpl create mode 100755 admin/templates/idsociety/mainscreen_message_row_2.tpl create mode 100755 admin/templates/idsociety/message_row.tpl create mode 100755 admin/templates/idsociety/nntp.tpl diff --git a/admin/templates/idsociety/accesslog.tpl b/admin/templates/idsociety/accesslog.tpl new file mode 100755 index 0000000000..59cf2acbc8 --- /dev/null +++ b/admin/templates/idsociety/accesslog.tpl @@ -0,0 +1,27 @@ + +

+ + + + + + + + + + + + + {rows} + + + + + + + + +
+ {lang_last_x_logins} +
{lang_loginid}{lang_ip}{lang_login}{lang_logout}{lang_total}
{footer_total}
{lang_percent}
+ diff --git a/admin/templates/idsociety/accesslog_row.tpl b/admin/templates/idsociety/accesslog_row.tpl new file mode 100755 index 0000000000..3983217ed0 --- /dev/null +++ b/admin/templates/idsociety/accesslog_row.tpl @@ -0,0 +1,10 @@ + + + + {row_loginid} + {row_ip} + {row_li} + {row_lo} + {row_total} + + diff --git a/admin/templates/idsociety/account_form.tpl b/admin/templates/idsociety/account_form.tpl new file mode 100755 index 0000000000..b98d08c3bb --- /dev/null +++ b/admin/templates/idsociety/account_form.tpl @@ -0,0 +1,41 @@ +

{lang_action}



+{error_messages} + +
+
+ + + + + + + + + + + + + + + + + + + + + {password_fields} + + + + + + + {permissions_list} + + {gui_hooks} + + {form_buttons} + +
 
{lang_loginid}{account_lid} {lang_account_active}:{account_status}
{lang_firstname}{account_firstname} {lang_lastname}{account_lastname} 
{lang_groups}{groups_select} 
+
+
diff --git a/admin/templates/idsociety/account_form_buttons.tpl b/admin/templates/idsociety/account_form_buttons.tpl new file mode 100755 index 0000000000..9694acd2db --- /dev/null +++ b/admin/templates/idsociety/account_form_buttons.tpl @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/admin/templates/idsociety/account_form_logininfo.tpl b/admin/templates/idsociety/account_form_logininfo.tpl new file mode 100755 index 0000000000..e8bb15107a --- /dev/null +++ b/admin/templates/idsociety/account_form_logininfo.tpl @@ -0,0 +1,8 @@ + + + {lang_lastlogin} + {account_lastlogin} + + {lang_lastloginfrom} + {account_lastloginfrom} + diff --git a/admin/templates/idsociety/account_form_password.tpl b/admin/templates/idsociety/account_form_password.tpl new file mode 100755 index 0000000000..09b54d2b16 --- /dev/null +++ b/admin/templates/idsociety/account_form_password.tpl @@ -0,0 +1,7 @@ + + + {lang_password} + + {lang_reenter_password} + + diff --git a/admin/templates/idsociety/accounts.tpl b/admin/templates/idsociety/accounts.tpl new file mode 100755 index 0000000000..b1a4bfffbf --- /dev/null +++ b/admin/templates/idsociety/accounts.tpl @@ -0,0 +1,42 @@ + +

+ + + + + + +
{left_next_matchs}{lang_user_accounts}{right_next_matchs}
+ +

+ + + + + + + + + + + {rows} + +
{lang_loginid}{lang_lastname}{lang_firstname}{lang_edit}{lang_delete}{lang_view}
+
+ +
+ + + + + +
+ + +
+ {lang_search}  + +
+
+ + diff --git a/admin/templates/idsociety/accounts_row.tpl b/admin/templates/idsociety/accounts_row.tpl new file mode 100755 index 0000000000..7daa706e3f --- /dev/null +++ b/admin/templates/idsociety/accounts_row.tpl @@ -0,0 +1,11 @@ + + + + {row_loginid} + {row_lastname} + {row_firstname} + {row_edit} + {row_delete} + {row_view} + + diff --git a/admin/templates/idsociety/accounts_row_empty.tpl b/admin/templates/idsociety/accounts_row_empty.tpl new file mode 100755 index 0000000000..d06d6f329c --- /dev/null +++ b/admin/templates/idsociety/accounts_row_empty.tpl @@ -0,0 +1,6 @@ + + + + {message} + + diff --git a/admin/templates/idsociety/application_form.tpl b/admin/templates/idsociety/application_form.tpl new file mode 100755 index 0000000000..e66bcef4fc --- /dev/null +++ b/admin/templates/idsociety/application_form.tpl @@ -0,0 +1,21 @@ +

{lang_header} +


+{error} + +

+ {hidden_vars} + + + + + + {rows} + + + + + +
 
+ +
+
diff --git a/admin/templates/idsociety/application_form_row.tpl b/admin/templates/idsociety/application_form_row.tpl new file mode 100755 index 0000000000..2b707dd56e --- /dev/null +++ b/admin/templates/idsociety/application_form_row.tpl @@ -0,0 +1,4 @@ + + {label} + {value} + diff --git a/admin/templates/idsociety/applications.tpl b/admin/templates/idsociety/applications.tpl new file mode 100755 index 0000000000..d31775c0c8 --- /dev/null +++ b/admin/templates/idsociety/applications.tpl @@ -0,0 +1,30 @@ + + +

{lang_installed}


+ +

+ + + + + + + + + + + {rows} + +
{sort_title} {lang_edit}{lang_delete}{lang_enabled}
+ + + + + +
+
+ +
+
+ + diff --git a/admin/templates/idsociety/applications_row.tpl b/admin/templates/idsociety/applications_row.tpl new file mode 100755 index 0000000000..bd017612f9 --- /dev/null +++ b/admin/templates/idsociety/applications_row.tpl @@ -0,0 +1,9 @@ + + + + {name} + {edit} + {delete} + {status} + + diff --git a/admin/templates/idsociety/category_form.tpl b/admin/templates/idsociety/category_form.tpl new file mode 100644 index 0000000000..691f5dae2c --- /dev/null +++ b/admin/templates/idsociety/category_form.tpl @@ -0,0 +1,62 @@ + + +

+ + + + +
{title_categories}
+{message} + + + + + + + + + + + + + + +
 
{lang_name}:
{lang_descr}:
+ + + + + + + + +
+ {hidden_vars} + + +
+ {hidden_vars} +
+ +
+ + + + + + + + + +
+ {hidden_vars} + +
+ {hidden_vars} +
+
+ {hidden_vars} +
+ + + diff --git a/admin/templates/idsociety/currentusers.tpl b/admin/templates/idsociety/currentusers.tpl new file mode 100755 index 0000000000..082040c228 --- /dev/null +++ b/admin/templates/idsociety/currentusers.tpl @@ -0,0 +1,24 @@ + +
+{lang_current_users}: + + + {left_next_matchs} + + {right_next_matchs} + + + + + + + + + + + + {rows} + + +
 
{sort_loginid}{sort_ip}{sort_login_time}{sort_action}{sort_idle}{lang_kill}
+ diff --git a/admin/templates/idsociety/currentusers_row.tpl b/admin/templates/idsociety/currentusers_row.tpl new file mode 100755 index 0000000000..a6560b1cf5 --- /dev/null +++ b/admin/templates/idsociety/currentusers_row.tpl @@ -0,0 +1,11 @@ + + + + {row_loginid} + {row_ip} + {row_logintime} + {row_action} + {row_idle} + {row_kill} + + diff --git a/admin/templates/idsociety/delete_common.tpl b/admin/templates/idsociety/delete_common.tpl new file mode 100644 index 0000000000..94e7026403 --- /dev/null +++ b/admin/templates/idsociety/delete_common.tpl @@ -0,0 +1,16 @@ + +
+ + + + + + + + +
+ {messages} +
{no}{yes}
+
+ + diff --git a/admin/templates/idsociety/groups.tpl b/admin/templates/idsociety/groups.tpl new file mode 100755 index 0000000000..fd2ca1162c --- /dev/null +++ b/admin/templates/idsociety/groups.tpl @@ -0,0 +1,36 @@ + +

+ + + + + + +
{left_nextmatchs}{lang_groups}{right_nextmatchs}
+ + + + + + + + + {rows} + +
{sort_name}{header_edit}{header_delete}
+ + + + + + +
+
+ +
+
{lang_search}  +
+ +
+
+ diff --git a/admin/templates/idsociety/groups_form.tpl b/admin/templates/idsociety/groups_form.tpl new file mode 100755 index 0000000000..bba2591c83 --- /dev/null +++ b/admin/templates/idsociety/groups_form.tpl @@ -0,0 +1,31 @@ + {error} + + + {hidden_vars} + + + + + + + + + + + + + + + + + + + +
{lang_group_name}
{lang_include_user} +
{lang_permissions} + {permissions_list} +
+ +
diff --git a/admin/templates/idsociety/groups_row.tpl b/admin/templates/idsociety/groups_row.tpl new file mode 100755 index 0000000000..7d42fa1f67 --- /dev/null +++ b/admin/templates/idsociety/groups_row.tpl @@ -0,0 +1,8 @@ + + + + {group_name} + {edit_link} + {delete_link} + + diff --git a/admin/templates/idsociety/images/navbar-over.gif b/admin/templates/idsociety/images/navbar-over.gif new file mode 100644 index 0000000000000000000000000000000000000000..229143d2687d1b545fcc212e4c4ce0fc1a3a226a GIT binary patch literal 421 zcmV;W0b2e?Nk%w1VVVFE0K@f5CxU zT|9-!tdhCsor$%#(zDj)@UhxQ6E@!VsN$;RwC0%1*|Jpwh-;Uvf70d|!O*SLsXE9a zDx63$2r!3Pz#Usvv13IE7|rxZ#?Pb4c@zL5;e&XxWyb~)z729ov*Utc#R#0K$Zquw(b3UVR8#-} z0O{%JqN1YB&CLJ+00000A^8LV00000EC2ui0Ga?2000E{(11y+y*TU5yZ>Og1;=0# zgCwqO>%Oo>nggoFc&_i?tkj9yVlw0zkI2yMl%gOCfM;?_tuAZLiBwwcdUHPDZ41Q+ z&XY45AfUA0Znj%Zf2-$hHeIgI=lNeOS2j*iTo!+DX?l!leieUli;IbpmUfeYD*+4y zo}OcdWr%x~aHn#LeV2EAYk;b#k(wZ31VM#SqmXf?y?ki1z><%dzLbu%nY9UD>+kCAH}Led<@5FVU7Vkw`v3d9p=c1G cpuvL(6DnNDu%W|;5F<*Q=&;0(TM+;NI|s(5g#Z8m literal 0 HcmV?d00001 diff --git a/admin/templates/idsociety/listcats.tpl b/admin/templates/idsociety/listcats.tpl new file mode 100644 index 0000000000..e636d63ea3 --- /dev/null +++ b/admin/templates/idsociety/listcats.tpl @@ -0,0 +1,61 @@ + +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
{title_categories}
+ + + {left} + + {right} + +
{lang_showing}
+
  +
+  
{sort_name}{sort_description}{lang_edit}{lang_delete}
{name}{descr}{lang_edit_entry}{lang_delete_entry}
+
+
+
+
+
+
+
+ diff --git a/admin/templates/idsociety/mainscreen_message.tpl b/admin/templates/idsociety/mainscreen_message.tpl new file mode 100755 index 0000000000..5437f2d595 --- /dev/null +++ b/admin/templates/idsociety/mainscreen_message.tpl @@ -0,0 +1,15 @@ + + +

{header_lang}


+ +{error_message}

+ +

+ + + {rows} + +
+
+ + \ No newline at end of file diff --git a/admin/templates/idsociety/mainscreen_message_row.tpl b/admin/templates/idsociety/mainscreen_message_row.tpl new file mode 100755 index 0000000000..e534ad452f --- /dev/null +++ b/admin/templates/idsociety/mainscreen_message_row.tpl @@ -0,0 +1,7 @@ + + + + {label} + {value} + + diff --git a/admin/templates/idsociety/mainscreen_message_row_2.tpl b/admin/templates/idsociety/mainscreen_message_row_2.tpl new file mode 100755 index 0000000000..3bd40c8795 --- /dev/null +++ b/admin/templates/idsociety/mainscreen_message_row_2.tpl @@ -0,0 +1,6 @@ + + + + {value} + + diff --git a/admin/templates/idsociety/message_row.tpl b/admin/templates/idsociety/message_row.tpl new file mode 100755 index 0000000000..5d249d1502 --- /dev/null +++ b/admin/templates/idsociety/message_row.tpl @@ -0,0 +1,5 @@ + + + {message_display} + + diff --git a/admin/templates/idsociety/nntp.tpl b/admin/templates/idsociety/nntp.tpl new file mode 100755 index 0000000000..ad163ed1a0 --- /dev/null +++ b/admin/templates/idsociety/nntp.tpl @@ -0,0 +1,68 @@ + + + +

{title}
+ + + + + {nml} + {nmr} +
+
+
+ {common_hidden_vars} + + + +
+
+
+
+ {common_hidden_vars} + + + + + + + + + {output} + + + + + + + + + + + + + + + + + + +
{sort_con}{sort_group}{sort_active}
{con}{group}{active}
  + +
+
+
+