Files
@ 42f3115cc2ac
Branch filter:
Location: kallithea/kallithea/templates/pullrequests/pullrequest_show_my.html - annotation
42f3115cc2ac
879 B
text/html
style: add class 'normal-indent' instead of repeated explicit margins
Add a new CSS class for the standard indentation inside the main box,
instead of repeating 'style="..."' statements on the relevant elements.
Ideally, this class should not exist as the necessary padding would be added
to the main box itself, but reworking this is a bigger exercise (to be done
later).
Add a new CSS class for the standard indentation inside the main box,
instead of repeating 'style="..."' statements on the relevant elements.
Ideally, this class should not exist as the necessary padding would be added
to the main box itself, but reworking this is a bigger exercise (to be done
later).
6564d82e1469 6564d82e1469 37354e1ab283 3a3ec35466e7 37354e1ab283 6564d82e1469 6564d82e1469 6564d82e1469 6564d82e1469 6564d82e1469 ec39e73be935 6564d82e1469 ec39e73be935 6564d82e1469 6564d82e1469 6564d82e1469 6564d82e1469 6564d82e1469 6564d82e1469 6564d82e1469 6564d82e1469 6564d82e1469 42f3115cc2ac e79993216c66 e79993216c66 e79993216c66 e79993216c66 e79993216c66 e79993216c66 e79993216c66 6564d82e1469 6564d82e1469 e79993216c66 e79993216c66 e79993216c66 6564d82e1469 6564d82e1469 6564d82e1469 | <%inherit file="/base/base.html"/>
<%block name="title">
${_('My Pull Requests')}
</%block>
<%def name="breadcrumbs_links()">
${_('My Pull Requests')}
</%def>
<%block name="header_menu">
${self.menu('my_pullrequests')}
</%block>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<div class="normal-indent">
<div>
%if c.closed:
${h.link_to(_('Hide closed pull requests (only show open pull requests)'), h.url('my_pullrequests'))}
%else:
${h.link_to(_('Show closed pull requests (in addition to open pull requests)'), h.url('my_pullrequests',closed=1))}
%endif
</div>
</div>
<div id="pullrequests_container" class="table">
<%include file='pullrequest_show_my_data.html'/>
</div>
</div>
</%def>
|