From 9d91e85fe4a52897ddd6dc2293d9866a39dc3e22 Mon Sep 17 00:00:00 2001 From: sw <939547590@qq.com> Date: Tue, 28 Oct 2014 14:19:13 +0800 Subject: [PATCH 1/6] =?UTF-8?q?#863=20=E5=A2=9E=E5=8A=A0=E5=B7=B2=E6=9C=89?= =?UTF-8?q?=E8=BF=9C=E7=A8=8B=E5=9C=B0=E5=9D=80=EF=BC=8C=E5=88=9B=E5=BB=BA?= =?UTF-8?q?=E4=B8=80=E4=B8=AA=E8=BF=9C=E7=A8=8B=E5=88=86=E6=94=AF=EF=BC=8C?= =?UTF-8?q?=E5=B9=B6=E5=88=87=E6=8D=A2=E5=88=B0=E8=AF=A5=E5=88=86=E6=94=AF?= =?UTF-8?q?=E7=9A=84=E7=A4=BA=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/repositories/show.html.erb | 132 ++++++++++++++++----------- 1 file changed, 77 insertions(+), 55 deletions(-) diff --git a/app/views/repositories/show.html.erb b/app/views/repositories/show.html.erb index d11fd2564..570f87064 100644 --- a/app/views/repositories/show.html.erb +++ b/app/views/repositories/show.html.erb @@ -7,79 +7,93 @@ <%= render :partial => 'breadcrumbs', :locals => { :path => @path, :kind => 'dir', :revision => @rev } %>
- <%if @repository.type.to_s=="Repository::Git"%> - <%= @repos_url%> - <%else %> - <%=h @repository.url %> - <% end %> + <%if @repository.type.to_s=="Repository::Git"%> + <%= @repos_url%> + <%else %> + + <%=h @repository.url %> + + <% end %>
-

- (<%= l(:label_all_revisions) %><%= @repositories.sort.collect {|repo| - link_to h(repo.name), - {:controller => 'repositories', :action => 'show', - :id => @project, :repository_id => repo.identifier_param, :rev => nil, :path => nil}, - :class => 'repository' + (repo == @repository ? ' selected' : '') - }.join(' | ').html_safe %>)

-

项目代码请设置好正确的编码方式(utf-8),否则中文会出现乱码

-

建立版本库文件夹,打开命令行执行如下:

-
-

git init

-

git add *

-

git commit -m "first commit"

-

git remote add origin <%= @repos_url%>

-

git config http.postBuffer 524288000 #设置本地post缓存为500MB

-

git push -u origin master:master

-
-

已经有本地库,还没有配置远程地址,打开命令行执行如下:

-
-

git remote add origin <%= @repos_url%>

-

git add .

+

+ (<%= l(:label_all_revisions) %><%= @repositories.sort.collect {|repo| + link_to h(repo.name), + {:controller => 'repositories', :action => 'show', + :id => @project, :repository_id => repo.identifier_param, :rev => nil, :path => nil}, + :class => 'repository' + (repo == @repository ? ' selected' : '') + }.join(' | ').html_safe %>) +

+

项目代码请设置好正确的编码方式(utf-8),否则中文会出现乱码

+

建立版本库文件夹,打开命令行执行如下:

+
+

git init

+

git add *

git commit -m "first commit"

+

git remote add origin + <%= @repos_url%> +

git config http.postBuffer 524288000 #设置本地post缓存为500MB

-

git push -u origin master:master

-
- -

从网上获取别人的开源版本库,转交到trustie网站上,打开命令行执行如下:

-
-

git remote add trustie <%= @repos_url%>

+

git push -u origin master:master

+
+

已经有本地库,还没有配置远程地址,打开命令行执行如下:

+
+

git remote add origin <%= @repos_url%>

git add .

git commit -m "first commit"

git config http.postBuffer 524288000 #设置本地post缓存为500MB

-

git push -u trustie master:master

-

<%= link_to "李海提供", user_path(646)%>

-
+

git push -u origin master:master

+
+

已有远程地址,创建一个远程分支,并切换到该分支,打开命令行执行如下:

+
+

git clone <%= @repos_url%>

+

git push

+

git checkout -b branch_name

+

git push origin branch_name

+
+

从网上获取别人的开源版本库,转交到trustie网站上,打开命令行执行如下:

+
+

git remote add trustie + <%= @repos_url%> +

+

git add .

+

git commit -m "first commit"

+

git config http.postBuffer 524288000 #设置本地post缓存为500MB

+

git push -u trustie master:master

+

<%= link_to "李海", user_path(646)%>提供

+
+ <% if !@entries.nil? && authorize_for('repositories', 'browse') %> <%= render :partial => 'dir_list' %> <% end %> <%= render_properties(@properties) %> - <% if authorize_for('repositories', 'revisions') %> <% if @changesets && !@changesets.empty? %> -

<%= l(:label_latest_revision_plural) %>

+

+ <%= l(:label_latest_revision_plural) %> +

<%= render :partial => 'revisions', :locals => {:project => @project, :path => @path, :revisions => @changesets, :entry => nil }%> <% end %>

- <% has_branches = (!@repository.branches.nil? && @repository.branches.length > 0) - sep = '' %> - <% if @repository.supports_all_revisions? && @path.blank? %> - <%= link_to l(:label_view_all_revisions), :action => 'revisions', :id => @project, - :repository_id => @repository.identifier_param %> - <% sep = '|' %> - <% end %> - <% if @repository.supports_directory_revisions? && - ( has_branches || !@path.blank? || !@rev.blank? ) %> - <%= sep %> - <%= link_to l(:label_view_revisions), - :action => 'changes', - :path => to_path_param(@path), - :id => @project, - :repository_id => @repository.identifier_param, - :rev => @rev %> - <% end %> + <% has_branches = (!@repository.branches.nil? && @repository.branches.length > 0) + sep = '' %> + <% if @repository.supports_all_revisions? && @path.blank? %> + <%= link_to l(:label_view_all_revisions), :action => 'revisions', :id => @project, + :repository_id => @repository.identifier_param %> + <% sep = '|' %> + <% end %> + <% if @repository.supports_directory_revisions? && ( has_branches || !@path.blank? || !@rev.blank? ) %> + <%= sep %> + <%= link_to l(:label_view_revisions), + :action => 'changes', + :path => to_path_param(@path), + :id => @project, + :repository_id => @repository.identifier_param, + :rev => @rev %> + <% end %>

<% if @repository.supports_all_revisions? %> <% content_for :header_tags do %> @@ -99,7 +113,15 @@ <% end %> -<%= l(:label_how_commit_code) %> <%= link_to(l(:label_how_commit_code_chinese), ch_usage_path, :class => "usage")%> | <%= link_to('English', en_usage_path, :class => "usage")%> + + + <%= l(:label_how_commit_code) %> + + +  +<%= link_to(l(:label_how_commit_code_chinese), ch_usage_path, :class => "usage")%> + |  +<%= link_to('English', en_usage_path, :class => "usage")%> From 205c78454f150988d49117eb960bf8bb7013b911 Mon Sep 17 00:00:00 2001 From: sw <939547590@qq.com> Date: Tue, 28 Oct 2014 14:28:14 +0800 Subject: [PATCH 2/6] =?UTF-8?q?#1414=E8=AE=BE=E7=BD=AE=E9=A6=96=E9=A1=B5?= =?UTF-8?q?=E6=8F=8F=E8=BF=B0=E6=9C=80=E5=B0=8F=E9=AB=98=E5=BA=A6=EF=BC=8C?= =?UTF-8?q?=E4=B8=94=E8=B4=B4=E5=90=A7=E5=8A=A8=E6=80=81=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E6=9D=A1=E6=95=B0=E6=94=B9=E4=B8=BA9=E6=9D=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/welcome/index.html.erb | 56 +++++++++++++++++++------------- 1 file changed, 34 insertions(+), 22 deletions(-) diff --git a/app/views/welcome/index.html.erb b/app/views/welcome/index.html.erb index 4fc08d41f..171b2b764 100644 --- a/app/views/welcome/index.html.erb +++ b/app/views/welcome/index.html.erb @@ -56,7 +56,9 @@

- <%= l(:lable_hot_projects)%> + + <%= l(:lable_hot_projects)%> +

<% if User.current.logged? %> @@ -83,14 +85,16 @@
<% unless project.is_public %> - <%= l(:label_private) %> + + <%= l(:label_private) %> + <% end %> <%= link_to( project.name, project_path(project.id), :class => "d-g-blue d-p-project-name",:title => "#{project.name}" )%> - (<%= link_to "#{projectCount(project)}人", project_member_path(project) ,:course =>'0' %>) + (<%= link_to "#{projectCount(project)}人", project_member_path(project) ,:course =>'0' %>)
-
+
- <%=project.description.truncate(100, omission: '...')%> + <%=project.description.truncate(90, omission: '...')%>
@@ -109,33 +113,37 @@
    -

    <%= l(:lable_user_active)%>

    - <%= link_to l(:label_more), { :controller => 'users', :action => 'index'}, :target => "_blank" %> +

    + + <%= l(:lable_user_active)%> + +

    + + <%= link_to l(:label_more), { :controller => 'users', :action => 'index'}, :target => "_blank" %> +
    <%activities = find_all_activities%> <% activities.each do |event| %> -
  • <%= image_tag url_to_avatar(event.event_author), :class => "avatar-3" %>
    -
    <%= link_to event.event_author, (user_path(event.event_author) if event.event_author), :style => "color:green;", :target => "_blank" %> <%= show_user_content event %> -

    - - <%= l(:field_updated_on) %> - <%= time_tag_welcome event.event_datetime %>前 - -       - - <%= show_event_reply event %> - -

    +

    + + <%= l(:field_updated_on) %> + <%= time_tag_welcome event.event_datetime %>前 + +       + + <%= show_event_reply event %> + +

  • <% end %> @@ -148,14 +156,18 @@

    - <%= l(:lable_bar_active)%> + + <%= l(:lable_bar_active)%> + <%= link_to l(:label_my_question) , newbie_send_path, {:class => 'orangeButton idea_btn', :style => "color: #EEEEEE" }%> <%= link_to l(:label_my_feedback) , suggestion_send_path, {:class => 'orangeButton idea_btn', :style => "color: #EEEEEE" }%>

    - <%= link_to l(:label_more), forums_path %> + + <%= link_to l(:label_more), forums_path %> +
    - <% topics = find_new_forum_topics(7) %> + <% topics = find_new_forum_topics(6) %> <% topics.includes(:forum, :last_reply, :author).each do |topic|%>
  • From a594326bceb644dbdec42fc243ec2d162bfaab47 Mon Sep 17 00:00:00 2001 From: sw <939547590@qq.com> Date: Tue, 28 Oct 2014 15:47:20 +0800 Subject: [PATCH 3/6] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=AF=BE=E7=A8=8B?= =?UTF-8?q?=E8=AF=A6=E7=BB=86=E4=BF=A1=E6=81=AF=E7=95=8C=E9=9D=A2=E6=95=99?= =?UTF-8?q?=E5=B8=88=E5=8D=95=E4=BD=8D=E4=B8=BA=E5=BC=80=E8=AE=BE=E8=AF=BE?= =?UTF-8?q?=E7=A8=8B=E5=8D=95=E4=BD=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/layouts/base_courses.html.erb | 8 ++++---- config/locales/zh.yml | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/app/views/layouts/base_courses.html.erb b/app/views/layouts/base_courses.html.erb index fd21b97a0..04249b3bc 100644 --- a/app/views/layouts/base_courses.html.erb +++ b/app/views/layouts/base_courses.html.erb @@ -202,18 +202,18 @@ <% unless @course.teacher.user_extensions.nil? || @course.teacher.user_extensions.school.nil? %> - <%= l(:label_teacher_work_unit) %> : + <%= l(:label_course_organizers) %> : - - <%= @course.teacher.user_extensions.school %> + + <%= @course.school %> <% else %> - <%= l(:label_teacher_work_unit) %> : + <%= l(:label_course_organizers) %> : <%= l(:field_course_un) %> diff --git a/config/locales/zh.yml b/config/locales/zh.yml index 32cb7dd23..c330b8b90 100644 --- a/config/locales/zh.yml +++ b/config/locales/zh.yml @@ -2169,3 +2169,4 @@ zh: label_no_contest_news_title: 竞赛标题不能为空 label_contest_news_title_condition: 竞赛标题超过255个汉字 label_subject_empty: 主题不能为空 + label_course_organizers: 开设单位 From 591aa78dcff0f1161289eeedff1bd316bd638b68 Mon Sep 17 00:00:00 2001 From: sw <939547590@qq.com> Date: Tue, 28 Oct 2014 17:22:35 +0800 Subject: [PATCH 4/6] =?UTF-8?q?=E8=B0=83=E6=95=B4=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/bids/_history.html.erb | 49 +++++++++++-------- app/views/bids/show.html.erb | 30 +++++++++--- app/views/words/_journal_reply.html.erb | 6 +-- app/views/words/_journal_reply_items.html.erb | 42 +++++++++------- app/views/words/_new_respond.html.erb | 2 +- app/views/words/create_reply.js.erb | 15 +++--- 6 files changed, 87 insertions(+), 57 deletions(-) diff --git a/app/views/bids/_history.html.erb b/app/views/bids/_history.html.erb index 784fb7ff8..8273c4b04 100644 --- a/app/views/bids/_history.html.erb +++ b/app/views/bids/_history.html.erb @@ -1,6 +1,8 @@ <% reply_allow = JournalsForMessage.create_by_user? User.current %> <% tip1 = (@bid.reward_type == 3) ? l(:label_student_response) : l(:label_user_response) %> -

    <%=tip1%>

    +

    + <%=tip1%> +

    <%= render :partial => 'new', :locals => {:bid => @bid, :sta => @state} %> @@ -22,24 +24,31 @@
      <% for journal in journals%>
    • - <%= image_tag(url_to_avatar(journal.user), :class => "avatar") %> - - <%= link_to journal.user, user_path(journal.user)%> - <%= label %> -
      <%= textilizable journal.notes%>
      - - <%= l(:label_bids_published) %>  - <%= time_tag(journal.created_on).html_safe %>  - <%= l(:label_bids_published_ago) %> - - <% ids = 'project_respond_form_'+ journal.id.to_s%> - + + <%= image_tag(url_to_avatar(journal.user), :class => "avatar") %> + + + + <%= link_to journal.user, user_path(journal.user)%> + + + <%= label %> + +
      + <%= textilizable journal.notes%> +
      + + <%= l(:label_bids_published) %>  + <%= time_tag(journal.created_on).html_safe %>  + <%= l(:label_bids_published_ago) %> + + <% ids = 'project_respond_form_'+ journal.id.to_s%> + <% if reply_allow %> <%= link_to(l(:button_quote), {:controller => 'bids', :action => 'new', :id => bid, :journal_id => journal}, :remote => true,:method => 'post', :title => l(:button_quote))%> <%= link_to l(:label_bid_respond_quote),'', - {:focus => 'project_respond', :onclick => "toggleAndSettingWordsVal($('##{ids}'), $('##{ids} textarea'), '#{l(:label_reply_plural)} #{journal.user.name}: '); $('##{ids} textarea') ;return false;"} - %> + {:focus => 'project_respond', :onclick => "toggleAndSettingWordsVal($('##{ids}'), $('##{ids} textarea'), '#{l(:label_reply_plural)} #{journal.user.name}: '); $('##{ids} textarea') ;return false;"} %> <% end %> <% if @user==User.current|| User.current.admin? %> <%= link_to(l(:label_bid_respond_delete), @@ -47,14 +56,14 @@ :remote => true, :confirm => l(:text_are_you_sure), :method => 'delete', :class => "delete", :title => l(:button_delete)) %> <% end %> -
      -
      +
      +
      <% ids = 'project_respond_form_'+ journal.id.to_s%> <% if reply_allow %> -
      - <%= render :partial => 'words/new_respond', :locals => {:journal => journal, :m_reply_id => journal} %> -
      +
      + <%= render :partial => 'words/new_respond', :locals => {:journal => journal, :m_reply_id => journal} %> +
      <% end %>
      diff --git a/app/views/bids/show.html.erb b/app/views/bids/show.html.erb index 31baac38d..d9e9a5ae1 100644 --- a/app/views/bids/show.html.erb +++ b/app/views/bids/show.html.erb @@ -1,16 +1,34 @@ <% reply_allow = JournalsForMessage.create_by_user? User.current %>
      - <%= image_tag(url_to_avatar(@bid.author), :class => "avatar")%> + + <%= image_tag(url_to_avatar(@bid.author), :class => "avatar")%> + -

      <%= link_to(@bid.author.lastname+@bid.author.firstname, user_path(@bid.author))%>:<%= link_to(@bid.name,respond_path(@bid)) %>

      +

      + <%= link_to(@bid.author.lastname+@bid.author.firstname, user_path(@bid.author))%>: + <%= link_to(@bid.name,respond_path(@bid)) %> +

      <% if @bid.reward_type.nil? or @bid.reward_type == 1%>

      - <%= l(:label_bids_reward_method) %><%= l(:label_call_bonus) %>  <%= l(:label_RMB_sign) %><%= @bid.budget %> + + <%= l(:label_bids_reward_method) %> + + <%= l(:label_call_bonus) %> +   + <%= l(:label_RMB_sign) %> + <%= @bid.budget %> + +

      <% elsif @bid.reward_type == 2%> -

      - <%= l(:label_bids_reward_method) %><%= @bid.budget%> -

      +

      + + <%= l(:label_bids_reward_method) %> + + <%= @bid.budget%> + + +

      <% else %> <% end %>
      diff --git a/app/views/words/_journal_reply.html.erb b/app/views/words/_journal_reply.html.erb index 6f87443c4..d9b9b4587 100644 --- a/app/views/words/_journal_reply.html.erb +++ b/app/views/words/_journal_reply.html.erb @@ -1,7 +1,7 @@ <% id = "journal_reply_ul_" + journal.id.to_s%>
        - <% fetch_user_leaveWord_reply(journal).each do |reply|%> - <%= render :partial => "words/journal_reply_items", :locals => {:reply => reply, :journal => journal, :m_reply_id => reply} %> - <% end %> + <% fetch_user_leaveWord_reply(journal).each do |reply|%> + <%= render :partial => "words/journal_reply_items", :locals => {:reply => reply, :journal => journal, :m_reply_id => reply} %> + <% end %>
      diff --git a/app/views/words/_journal_reply_items.html.erb b/app/views/words/_journal_reply_items.html.erb index 0c33bedd3..030a0cdcd 100644 --- a/app/views/words/_journal_reply_items.html.erb +++ b/app/views/words/_journal_reply_items.html.erb @@ -2,33 +2,39 @@ <% ids_r = 'reply_respond_form_'+ reply.id.to_s %>
    • - <%= image_tag url_to_avatar(reply.user), :class => "avatar-3" %> + <%= image_tag url_to_avatar(reply.user), :class => "avatar-3" %>
      - <% id = 'project_respond_form_'+ reply.id.to_s %> + <% id = 'project_respond_form_'+ reply.id.to_s %>

      - <%= link_to reply.user.name, user_path(reply.user) %>:  - <%= reply.notes %> + + <%= link_to reply.user.name, user_path(reply.user) %> + :  + + + <%= reply.notes %> +

      - <%= format_time reply.created_on %> - + + <%= format_time reply.created_on %> + +

      - <% if reply_allow %> + <% if reply_allow %> <%= render :partial => "words/new_respond", :locals => {:journal => journal, :m_reply_id => m_reply_id} %> - <% end %> + <% end %>
    • \ No newline at end of file diff --git a/app/views/words/_new_respond.html.erb b/app/views/words/_new_respond.html.erb index 64b83d777..5671bcfa5 100644 --- a/app/views/words/_new_respond.html.erb +++ b/app/views/words/_new_respond.html.erb @@ -1,5 +1,5 @@ -<%= form_tag({:controller => 'words', :action => 'create_reply'}, :remote => true) do %> +<%= form_tag(words_create_reply_path, :remote => true) do %> <%= text_area_tag 'user_notes', "", :class => 'noline', :style => "resize: none;", :rows => 4, :placeholder => l(:label_projects_feedback_respond_content), diff --git a/app/views/words/create_reply.js.erb b/app/views/words/create_reply.js.erb index 6af90ef02..b24f46641 100644 --- a/app/views/words/create_reply.js.erb +++ b/app/views/words/create_reply.js.erb @@ -5,15 +5,12 @@ ) %>').hide(); $('#journal_reply_ul_<%=@jfm.m_parent_id%>').append(pre_append); pre_append.fadeIn(600); - -var textarea = $('#project_respond_form_<%=@jfm.m_reply_id.to_s%> textarea'); -textarea.val(''); -$('#project_respond_form_<%=@jfm.m_reply_id.to_s%>').hide(); - -var textarea1 = $('#course_respond_form_<%=@jfm.m_reply_id.to_s%> textarea'); -textarea1.val(''); -$('#course_respond_form_<%=@jfm.m_reply_id.to_s%>').hide(); - + var textarea = $('#project_respond_form_<%=@jfm.m_reply_id.to_s%> textarea'); + textarea.val(''); + $('#project_respond_form_<%=@jfm.m_reply_id.to_s%>').hide(); + var textarea1 = $('#course_respond_form_<%=@jfm.m_reply_id.to_s%> textarea'); + textarea1.val(''); + $('#course_respond_form_<%=@jfm.m_reply_id.to_s%>').hide(); setMaxLengthItem(pre_append.find('textarea')[0]); <% else %> alert("<%= l(:label_feedback_fail) %>"); From fb267080075541393ba2bec294885a7a4f43dbd4 Mon Sep 17 00:00:00 2001 From: sw <939547590@qq.com> Date: Tue, 28 Oct 2014 17:25:46 +0800 Subject: [PATCH 5/6] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=AF=BE=E7=A8=8B?= =?UTF-8?q?=E5=AE=9E=E8=B7=B5=E4=B8=8A=E4=BC=A0=E9=99=84=E4=BB=B6=E4=BA=BA?= =?UTF-8?q?=E6=82=AC=E6=B5=AE=E6=A1=86=E6=98=BE=E7=A4=BA=E4=B8=8D=E6=AD=A3?= =?UTF-8?q?=E7=A1=AE=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/attachments/_links.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/attachments/_links.html.erb b/app/views/attachments/_links.html.erb index 30e60190d..d5359185e 100644 --- a/app/views/attachments/_links.html.erb +++ b/app/views/attachments/_links.html.erb @@ -33,7 +33,7 @@ <% end %> <% end %> <% if options[:author] %> - + <%= link_to h(truncate(attachment.author.name, length: 10, omission: '...')),user_path(attachment.author) %>, <%= format_time(attachment.created_on) %> From 7aa2e5c55318a1f5abc8b78515685dc1eb9ea42d Mon Sep 17 00:00:00 2001 From: sw <939547590@qq.com> Date: Tue, 28 Oct 2014 17:28:18 +0800 Subject: [PATCH 6/6] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=83=A8=E5=88=86?= =?UTF-8?q?=E6=B5=8F=E8=A7=88=E5=99=A8=E8=AF=BE=E7=A8=8B=E4=BD=9C=E4=B8=9A?= =?UTF-8?q?=E7=95=8C=E9=9D=A2=E5=B7=A6=E8=BE=B9=E8=AF=BE=E7=A8=8B=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E9=83=A8=E5=88=86=E6=98=BE=E7=A4=BA=E4=B8=8D=E6=AD=A3?= =?UTF-8?q?=E7=A1=AE=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/layouts/base_homework.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/layouts/base_homework.html.erb b/app/views/layouts/base_homework.html.erb index ed5691314..4fb97bf24 100644 --- a/app/views/layouts/base_homework.html.erb +++ b/app/views/layouts/base_homework.html.erb @@ -126,7 +126,7 @@ - + <%= l(:lable_course_teacher) %> :