Example #1
0
 def get(self, tag):
     data = {
         'title': 'Tag | 便签',
         'tag': tag,
         'notes': Note.get_note_by_tag(tag),
         'tags': Note.get_all_tag()
     }
     self.render('admin/admin_note.html', **data)
Example #2
0
    def get(self, tag):
        data = {
            'title': 'Tag | 便签',
            'notes': Note.get_note_by_tag(tag),
            'tags': Note.get_all_tag()
        }

        self.render('purecss_ui/note.html', **data)
Example #3
0
    def get(self, tag):
        data = {
            'title': 'Tag | 便签',
            'notes': Note.get_note_by_tag(tag),
            'tags': Note.get_all_tag()
        }

        self.render('purecss_ui/note.html', **data)