Sha256: c9d650b9c53d33c04897a1cf6dc7ea298400c925364198e33e362369357f9d5a

Contents?: true

Size: 1.27 KB

Versions: 32

Compression:

Stored size: 1.27 KB

Contents

<% 
         failed_dispatches = failed_service_dispatches()
         unless ( failed_dispatches.nil? || failed_dispatches.empty? ) %>
         <div id="service_errors_content" class="small_right_box">


               <span class="error_icon">(!)</span><span class="smallText">Some content may not be included due to errors:</span>
        <ul>
          <% failed_dispatches.each do | dispatch | %>
            <li class="smallText">           
            Some <i><%= dispatch.service.service_types_generated.collect { |type|
               type.display_name_pluralize.downcase}.join(",") %></i>
             from <a class="simple_visible_toggle"><strong><%= dispatch.service.display_name %>  </strong> </a>
              <% exception_info = dispatch.exception_info %>
                <div style="display: none;">
                technical error information
                <ul>
                   <li> <%= exception_info[:class_name] if exception_info %> </li>
                   <li> <%= exception_info[:message] if exception_info %> </li>
                   <li> dispatched service id: <%= dispatch.id %>  </li>                    
                </ul>
                </div>
            </li>
          <% end %>
        </ul>
       <span class="clear"></span>
       </div>
       <% end %>

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
umlaut-3.0.0alpha12 app/views/resolve/_service_errors.html.erb
umlaut-3.0.0alpha11 app/views/resolve/_service_errors.html.erb
umlaut-3.0.0alpha10 app/views/resolve/_service_errors.html.erb
umlaut-3.0.0alpha9 app/views/resolve/_service_errors.html.erb
umlaut-3.0.0alpha8 app/views/resolve/_service_errors.html.erb
umlaut-3.0.0alpha7 app/views/resolve/_service_errors.html.erb
umlaut-3.0.0alpha6 app/views/resolve/_service_errors.html.erb
umlaut-3.0.0alpha5 app/views/resolve/_service_errors.html.erb
umlaut-3.0.0alpha4 app/views/resolve/_service_errors.html.erb
umlaut-3.0.0alpha3 app/views/resolve/_service_errors.html.erb
umlaut-3.0.0alpha2 app/views/resolve/_service_errors.html.erb
umlaut-3.0.0alpha1 app/views/resolve/_service_errors.html.erb