diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/web/eastsussex/around/intro.html | 4 | ||||
-rw-r--r-- | templates/web/eastsussex/footer.html.template | 2 | ||||
-rw-r--r-- | templates/web/eastsussex/header.html.template | 5 | ||||
-rw-r--r-- | templates/web/eastsussex/report/new/category.html | 18 |
4 files changed, 24 insertions, 5 deletions
diff --git a/templates/web/eastsussex/around/intro.html b/templates/web/eastsussex/around/intro.html new file mode 100644 index 000000000..b3f403087 --- /dev/null +++ b/templates/web/eastsussex/around/intro.html @@ -0,0 +1,4 @@ + <h1>Report and view street and road problems </h1> + <h2> + (including potholes, broken paving slabs and street lighting) + </h2> diff --git a/templates/web/eastsussex/footer.html.template b/templates/web/eastsussex/footer.html.template index e98ea7168..b5b1a8ac6 100644 --- a/templates/web/eastsussex/footer.html.template +++ b/templates/web/eastsussex/footer.html.template @@ -7,7 +7,7 @@ <div class="nav-wrapper clearfix"> <div class="main-menu-wrapper"> <div class="main-menu"> - <ul class="clearfix" id="mobile-menu"> + <ul class="clearfix button-nav" id="mobile-menu"> <li class="home"><[% IF c.req.uri.path == '/' %]span[% ELSE %]a href="/"[% END %] class="report-a-problem-btn" >[% "Report" %]</[% c.req.uri.path == '/' ? 'span' : 'a' %]></li>[% %]<li><[% IF c.req.uri.path == '/my' OR ( c.req.uri.path == '/auth' AND c.req.params.r == 'my' ) %]span[% ELSE %]a href="/my"[% END diff --git a/templates/web/eastsussex/header.html.template b/templates/web/eastsussex/header.html.template index c7fda68f4..20e3b9417 100644 --- a/templates/web/eastsussex/header.html.template +++ b/templates/web/eastsussex/header.html.template @@ -28,10 +28,7 @@ <div class="container" id="nav-container"> <nav id="breadcrumb_breadcrumbTrail"> - <ol class="breadcrumb screen large"> - <li> - <a href="/">FixMyStreet</a> - </li> + <ol class="button-nav application-nav screen"> <li class="home"><[% IF c.req.uri.path == '/' %]span[% ELSE %]a href="/"[% END %] class="report-a-problem-btn" >[% "Report" %]</[% c.req.uri.path == '/' ? 'span' : 'a' %]></li>[% %]<li><[% IF c.req.uri.path == '/my' OR ( c.req.uri.path == '/auth' AND c.req.params.r == 'my' ) %]span[% ELSE %]a href="/my"[% END diff --git a/templates/web/eastsussex/report/new/category.html b/templates/web/eastsussex/report/new/category.html new file mode 100644 index 000000000..1759f450f --- /dev/null +++ b/templates/web/eastsussex/report/new/category.html @@ -0,0 +1,18 @@ +[% FILTER collapse %] +[% IF category_options.size %] + [% IF category; + category = category | lower; + END; %] + <label for='form_category' id="form_category_label"> + Type + </label> + <select name='category' id='form_category'[% ' onchange="form_category_onchange()"' IF category_extras.size %]> + [% FOREACH cat_op IN category_options %] + [% cat_op_lc = cat_op | lower %] + [% IF loop.first; cat_op = '-- Pick a type --'; END %] + <option value='[% cat_op | html %]'[% ' selected' IF report.category == cat_op || category == cat_op_lc || (category_options.size == 2 AND loop.last) -%] + >[% IF loop.first %][% cat_op %][% ELSE %][% cat_op | html %][% END %]</option> + [% END %] + </select> +[% END %] +[% END -%] |