Skip to content
Snippets Groups Projects
Commit 51c87ebee81c authored by sylvain thenault's avatar sylvain thenault
Browse files

final rtag api

parent 88710722243b
No related branches found
No related tags found
No related merge requests found
...@@ -18,10 +18,10 @@ ...@@ -18,10 +18,10 @@
from cubicweb.web.htmlwidgets import BoxLink, BoxWidget from cubicweb.web.htmlwidgets import BoxLink, BoxWidget
from cubicweb.web.views import baseviews, primary, boxes, calendar, navigation from cubicweb.web.views import baseviews, primary, boxes, calendar, navigation
uicfg.rdisplay.tag_attribute('Blog', 'title', {}) uicfg.primaryview_section.tag_attribute(('Blog', 'title'), 'hidden')
uicfg.rdisplay.tag_attribute('Blog', 'rss_url', {}) uicfg.primaryview_section.tag_attribute(('Blog', 'rss_url'), 'hidden')
uicfg.rdisplay.tag_attribute('BlogEntry', 'title', {}) uicfg.primaryview_section.tag_attribute(('BlogEntry', 'title'), 'hidden')
uicfg.rdisplay.tag_relation('*', 'entry_of', '!Blog', {}) uicfg.primaryview_section.tag_object_of(('*', 'entry_of', 'Blog'), 'hidden')
uicfg.rdisplay.tag_relation('!BlogEntry', 'entry_of', '*', uicfg.primaryview_section.tag_subject_of(('BlogEntry', 'entry_of', '*'),
{'where': 'relations'}) 'relations')
...@@ -27,5 +27,5 @@ ...@@ -27,5 +27,5 @@
uicfg.rmode.tag_relation('*', 'entry_of', '!Blog', 'create') uicfg.actionbox_appearsin_addmenu.tag_object_of('*', 'entry_of', 'Blog')
class BlogPrimaryView(primary.PrimaryView): class BlogPrimaryView(primary.PrimaryView):
__select__ = implements('Blog') __select__ = implements('Blog')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment