Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[13.0] [MIG] project_kanban: Migrated the module in v13. #378

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion project_kanban/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2016 Serpent Consulting Services Pvt. Ltd.
# See LICENSE file for full copyright and licensing details.

from . import models
3 changes: 1 addition & 2 deletions project_kanban/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# Copyright 2016 Serpent Consulting Services Pvt. Ltd.
# See LICENSE file for full copyright and licensing details.

{
'name': 'Project - Status by Recent Activities',
'version': '12.0.1.0.0',
'version': '13.0.1.0.0',
'author': 'Serpent Consulting Services Pvt. Ltd.',
'license': 'AGPL-3',
'maintainer': 'Serpent Consulting Services Pvt. Ltd.',
Expand Down
1 change: 0 additions & 1 deletion project_kanban/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2016 Serpent Consulting Services Pvt. Ltd.
# See LICENSE file for full copyright and licensing details.

from . import project
1 change: 0 additions & 1 deletion project_kanban/models/project.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2016 Serpent Consulting Services Pvt. Ltd.
# See LICENSE file for full copyright and licensing details.

from odoo import api, fields, models
Expand Down
4 changes: 2 additions & 2 deletions project_kanban/static/description/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<section class="oe_container">
<div class="oe_row oe_spaced" style="margin-top:10px;margin-bottom:10px;">
<h2 class="oe_slogan" style="color: #875A7B;font-family:times new roman;margin-top:10px;margin-bottom:20px;">
<span class="label" style="background:#875A7B">
<span class="label">
<span class="fa fa-star fa-spin"/>
Project Management
</span>
Expand All @@ -27,7 +27,7 @@ <h3 class="oe_slogan" style="font-family:times new roman;margin-top:10px;margin-
<section class="oe_container">
<div class="oe_row oe_spaced" style="margin-top:10px;margin-bottom:10px;">
<h2 class="oe_slogan" style="color:#875A7B;font-family:times new roman;margin-top:10px;margin-bottom:20px;">
<span class="label" style="background:#875A7B">
<span class="label">
<span class="fa fa-star fa-spin"/>
Last updated date
</span>
Expand Down
Binary file modified project_kanban/static/description/lastupdate.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion project_kanban/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Copyright 2016 Serpent Consulting Services Pvt. Ltd.
# See LICENSE file for full copyright and licensing details.

from . import test_project_kanban
2 changes: 1 addition & 1 deletion project_kanban/tests/test_project_kanban.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Copyright 2016 Serpent Consulting Services Pvt. Ltd.
# See LICENSE file for full copyright and licensing details.

from odoo.tests import common


class ProjectKanbanTest(common.TransactionCase):

def setup(self):
super(ProjectKanbanTest, self).setup()

Expand Down