@Override
  protected void onStart() {
    super.onStart();

    String pathId = getIntent().getStringExtra(EXTRA_PATH_ID);
    String url =
        environment
            .getConfig()
            .getEnrollmentConfig()
            .getCourseInfoUrlTemplate()
            .replace("{" + EXTRA_PATH_ID + "}", pathId);
    WebView webview = (WebView) findViewById(R.id.webview);
    webview.loadUrl(url);
  }