diff options
author | Peter Kozak <spag@golwen.net> | 2013-01-16 08:37:56 -0500 |
---|---|---|
committer | Peter Kozak <spag@golwen.net> | 2013-01-16 08:37:56 -0500 |
commit | 8c83a89c6fbfdb31cae8ea6fcf2fd50c12c076a5 (patch) | |
tree | 351d88cdc12b1de9511ac33b63673b8f904622c3 /app/views/route_elements/show.html.haml | |
parent | 113e3c6c6117fbeca7b9bf1f0e6dc26b0db9c407 (diff) |
route_elements added
Diffstat (limited to 'app/views/route_elements/show.html.haml')
-rw-r--r-- | app/views/route_elements/show.html.haml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/app/views/route_elements/show.html.haml b/app/views/route_elements/show.html.haml new file mode 100644 index 0000000..a439353 --- /dev/null +++ b/app/views/route_elements/show.html.haml @@ -0,0 +1,28 @@ +- title t("route_elements.show.page_title") + +%p + %strong= t('route_elements.show.call_route_id') + ":" + = @route_element.call_route_id +%p + %strong= t('route_elements.show.var_in') + ":" + = @route_element.var_in +%p + %strong= t('route_elements.show.var_out') + ":" + = @route_element.var_out +%p + %strong= t('route_elements.show.pattern') + ":" + = @route_element.pattern +%p + %strong= t('route_elements.show.replacement') + ":" + = @route_element.replacement +%p + %strong= t('route_elements.show.action') + ":" + = @route_element.action +%p + %strong= t('route_elements.show.mandatory') + ":" + = @route_element.mandatory +%p + %strong= t('route_elements.show.position') + ":" + = @route_element.position + += render :partial => 'shared/show_edit_destroy_part', :locals => { :child => @route_element }
\ No newline at end of file |