1. Import
This commit is contained in:
112
html/jobs/jb_special.tpl.htm
Normal file
112
html/jobs/jb_special.tpl.htm
Normal file
@@ -0,0 +1,112 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
|
||||
<html lang="de">
|
||||
<head>
|
||||
<title>votian: Auftragsübersicht</title>
|
||||
<!-- BEGIN css_file -->
|
||||
<link rel="stylesheet" type="text/css" href="{_css_file_}">
|
||||
<!-- END css_file -->
|
||||
<style>
|
||||
a:visited {
|
||||
color: fuchsia;
|
||||
}
|
||||
</style>
|
||||
<script src="../include/lib_global.js" type="text/javascript"></script>
|
||||
<script src="../jobs/job_options.js" type="text/javascript"></script>
|
||||
<script src="../include/lib_calendar.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
<!--
|
||||
|
||||
<!-- BEGIN javascript -->
|
||||
{_javascript_}
|
||||
<!-- END javascript -->
|
||||
|
||||
function mkYearCalendarWin(startYear, specialDatesIndex)
|
||||
{
|
||||
yearCalendarWin(startYear, specialDatesIndex);
|
||||
}
|
||||
|
||||
function popupWindow(url,title,config) {
|
||||
|
||||
// popup = window.open(url,title,config);
|
||||
|
||||
var widthPopupWin = screen.width - 80;
|
||||
var heightPopupWin = screen.height - 180;
|
||||
var leftPopupWin = (screen.width / 2) - (widthPopupWin / 2);
|
||||
var topPopupWin = (screen.height / 2) - (heightPopupWin / 2);
|
||||
var popup;
|
||||
popup = window.open(url,title,
|
||||
"dependent=yes,width=" + widthPopupWin + ",height=" +
|
||||
heightPopupWin +",left=" + leftPopupWin + ",top=" + topPopupWin +
|
||||
",scrollbars=yes");
|
||||
|
||||
}
|
||||
|
||||
var delJobs = "";
|
||||
|
||||
function toggle_del(jb_id) {
|
||||
|
||||
var pos = (delJobs).indexOf(jb_id);
|
||||
if (pos >= 0)
|
||||
delJobs = delJobs.substr(0, pos) + delJobs.substr(pos + jb_id.length + 1);
|
||||
else
|
||||
delJobs += jb_id + ",";
|
||||
}
|
||||
|
||||
function del_jobs() {
|
||||
if (delJobs == "") {
|
||||
alert("Keine Aufträge zum Löschen markiert.");
|
||||
return;
|
||||
}
|
||||
if (!confirm("Tournamen der markierten Aufträge wirklich löschen?")) {
|
||||
return;
|
||||
}
|
||||
//alert(curloc + "&deljobs=" + delJobs.substr(0, delJobs.length - 1));
|
||||
window.location.href = curloc + "&deljobs=" + delJobs.substr(0, delJobs.length - 1);
|
||||
}
|
||||
|
||||
-->
|
||||
</script>
|
||||
<noscript>
|
||||
<center>
|
||||
<b><br>JavaScript ist nicht verfügbar. Bitte aktivieren Sie JavaScript<br><br>
|
||||
in Ihrem Browser, damit diese Seite ordnungsgemäß funktioniert!</b><br><br>
|
||||
</center>
|
||||
</noscript>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
.verysmall
|
||||
{ font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 2pt; font-weight: normal; padding: 0px}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<table border="0" width="100%" cellspacing="0" cellpadding="0" vspace="0" hspace="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td align="center">
|
||||
<table border="0" width="100%" align="left" cellspacing="0" cellpadding="4" vspace="0" hspace="0">
|
||||
|
||||
<!-- BEGIN tableHeader -->
|
||||
<tr>
|
||||
{_tableHeader_}
|
||||
</tr>
|
||||
<!-- END tableHeader -->
|
||||
|
||||
<!-- BEGIN jobentry -->
|
||||
<tr>
|
||||
{_jobentry_}
|
||||
</tr>
|
||||
<!-- END jobentry -->
|
||||
</table>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user