Skip to content
This repository has been archived by the owner on May 19, 2021. It is now read-only.

PN rework #90

Open
7 tasks done
MAH1987 opened this issue Mar 14, 2015 · 1 comment
Open
7 tasks done

PN rework #90

MAH1987 opened this issue Mar 14, 2015 · 1 comment

Comments

@MAH1987
Copy link
Member

MAH1987 commented Mar 14, 2015

  • privmsg/inbox/
  • privmsg/inbox/%MESSAGEID%
  • privmsg/new/
  • privmsg/new/?reply_to=%MESSAGEID%
  • privmsg/sent/
  • privmsg/archive/
  • privmsg/trash/
@chris34
Copy link
Member

chris34 commented Mar 14, 2015

Some Inspiration for base.html ;)

{#
    portal/privmsg/base.html
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~

    :copyright: (c) 2013-2015 by the Inyoka Team, see AUTHORS for more details.
    :license: BSD, see LICENSE for more details.
#}

{% from 'macros.html' import breadcrumb_item, sidebar, sidebar_item %}
{%- extends 'portal/base.html' %}

{% block breadcrumb %}
  {{ super() }}

  {{ breadcrumb_item(_('Private message'), href('portal', 'privmsg')) }}
{% endblock %}

{% block sidebar %}
  {% call sidebar() %}
    {{ sidebar_item(_('Inbox'), href('portal', 'privmsg', 'inbox'), 'fa_icon-inbox') }}
    {{ sidebar_item(_('Sent mail'), href('portal', 'privmsg', 'sent') , 'fa_icon-share-square') }}
    {{ sidebar_item(_('Archive'), href('portal', 'privmsg', 'archive'), 'fa_icon-archive') }}
    {{ sidebar_item(_('Trash'), href('portal', 'privmsg', 'trash'), 'fa_icon-trash') }}
    {{ sidebar_item(_('Compose message'), href('portal', 'privmsg', 'new'), 'fa_icon-envelope-square') }}
  {% endcall %}
{% endblock %}

Missing icons should be easy to find at http://fortawesome.github.io/Font-Awesome/icons/

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants