Merge branch 'master' of github.com:webnotes/erpnext into production
This commit is contained in:
commit
ab5cf08c14
@ -1,4 +1,7 @@
|
||||
erpnext.updates = [
|
||||
["20th December 2012", [
|
||||
"Website: Create Product Search Page, Product Group Page on the website."
|
||||
]],
|
||||
["14th December 2012", [
|
||||
"Website Module: Major Refactor - removed framework code from website."
|
||||
]],
|
||||
|
@ -25,7 +25,8 @@ wn.doclistviews['Task'] = wn.views.ListView.extend({
|
||||
this._super(data);
|
||||
|
||||
data.label_style = this.label_style.status[data.status];
|
||||
|
||||
if(data.label_style=="danger")
|
||||
data.label_style = "important"
|
||||
data.status_html = repl('<span class="label \
|
||||
label-%(label_style)s">%(status)s</span>', data);
|
||||
|
||||
|
@ -6,10 +6,10 @@
|
||||
"public/css/all-app.css": [
|
||||
"app/public/js/startup.css"
|
||||
],
|
||||
"public/js/all-web.js": [
|
||||
"public/js/all-web.min.js": [
|
||||
"app/public/js/website_utils.js"
|
||||
],
|
||||
"public/js/all-app.js": [
|
||||
"public/js/all-app.min.js": [
|
||||
"app/public/js/startup.js",
|
||||
"app/public/js/conf.js",
|
||||
"app/public/js/modules.js",
|
||||
|
@ -27,7 +27,6 @@ erpnext.modules = {
|
||||
'Setup': 'Setup',
|
||||
'Activity': 'activity',
|
||||
'To Do': 'todo',
|
||||
'Core': 'setup',
|
||||
'Calendar': 'calendar',
|
||||
'Messages': 'messages',
|
||||
'Knowledge Base': 'questions',
|
||||
|
@ -15,7 +15,7 @@ wn.doclistviews['Support Ticket'] = wn.views.ListView.extend({
|
||||
|
||||
label_style: {
|
||||
"status": {
|
||||
"Open": "important",
|
||||
"Open": "danger",
|
||||
"Closed": "success",
|
||||
"Hold": "info",
|
||||
"Waiting for Customer": "info"
|
||||
@ -26,6 +26,8 @@ wn.doclistviews['Support Ticket'] = wn.views.ListView.extend({
|
||||
this._super(data);
|
||||
|
||||
data.label_style = this.label_style.status[data.status];
|
||||
if(data.label_style=="danger")
|
||||
data.label_style = "important"
|
||||
|
||||
data.status_html = repl('<span class="label \
|
||||
label-%(label_style)s">%(status)s</span>', data);
|
||||
|
@ -4,7 +4,7 @@
|
||||
<title>{% block title %}{% endblock %}</title>
|
||||
<meta name="generator" content="wnframework">
|
||||
<script type="text/javascript" src="lib/js/lib/jquery/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="js/all-web.js"></script>
|
||||
<script type="text/javascript" src="js/all-web.min.js"></script>
|
||||
<script type="text/javascript" src="js/wn-web.js"></script>
|
||||
<link type="text/css" rel="stylesheet" href="css/all-web.css">
|
||||
<link type="text/css" rel="stylesheet" href="css/wn-web.css">
|
||||
|
@ -20,11 +20,11 @@
|
||||
<table border="0" class="login-box">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: right;">Login Id</td>
|
||||
<td style="text-align: right; padding: 3px;">Login Id</td>
|
||||
<td><input id="login_id" type="text" style="width: 180px"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right;">Password</td>
|
||||
<td style="text-align: right; padding: 3px;">Password</td>
|
||||
<td><input id="password" type="password" style="width: 180px" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
Loading…
x
Reference in New Issue
Block a user