Skip to content

Commit

Permalink
The word Static is added automatically
Browse files Browse the repository at this point in the history
When usng UIModules, static word is used automatically as a suffix.
  • Loading branch information
abdelouahabb committed Jan 28, 2015
1 parent a8a9414 commit 1cf90ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extending_templates/bookstore/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ def render(self, book):
)

def css_files(self):
return "/static/css/recommended.css"
return "css/recommended.css"

def javascript_files(self):
return "/static/js/recommended.js"
return "js/recommended.js"


def main():
Expand Down

0 comments on commit 1cf90ff

Please sign in to comment.