Browse Source

Merge pull request #32 from buxx/fix/err_url

Tracim 9 years ago
parent
commit
acd9632c0a
1 changed files with 4 additions and 0 deletions
  1. 4 0
      tracim/tracim/controllers/content.py

+ 4 - 0
tracim/tracim/controllers/content.py View File

334
         return tg.url('/workspaces/{}/folders/{}/pages/{}')
334
         return tg.url('/workspaces/{}/folders/{}/pages/{}')
335
 
335
 
336
     @property
336
     @property
337
+    def _err_url(self):
338
+        return tg.url('/workspaces/{}/folders/{}/pages/{}')
339
+
340
+    @property
337
     def _parent_url(self):
341
     def _parent_url(self):
338
         return tg.url('/workspaces/{}/folders/{}')
342
         return tg.url('/workspaces/{}/folders/{}')
339
 
343